-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kostiantyn Kostiuk <[email protected]>
- Loading branch information
1 parent
00f95e8
commit 13975bc
Showing
10 changed files
with
145 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
set :branch, :main | ||
|
||
server 'ikt.edu.vn.ua:10017', user: 'arch-user', roles: %i[app web db] | ||
set :deploy_to, '/opt/ai/ikt.codelabs.site' | ||
|
||
server 'ikt.codelabs.site:10017', user: 'arch-user', roles: %i[app web db] | ||
|
||
namespace :deploy do | ||
after :finishing, 'ikt_application:restart' | ||
after :finishing, 'nginx:reload' | ||
after :finishing, 'bundler:clean' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
set :branch, :main | ||
|
||
set :deploy_to, '/opt/ai/stage-ikt.codelabs.site' | ||
|
||
server 'stage-ikt.codelabs.site:10016', user: 'arch-user', roles: %i[app web db] | ||
|
||
namespace :deploy do | ||
after :finishing, 'stage_application:restart' | ||
after :finishing, 'nginx:reload' | ||
after :finishing, 'bundler:clean' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
upstream stage_backend { | ||
server unix:///opt/ai/stage-ikt.codelabs.site/current/tmp/sockets/server.sock fail_timeout=0; | ||
} | ||
|
||
server { | ||
listen *:80; | ||
server_name stage-ikt.codelabs.site; | ||
return 301 https://$host$request_uri; | ||
} | ||
|
||
server { | ||
listen *:443; | ||
server_name stage-ikt.codelabs.site; | ||
client_max_body_size 1024M; | ||
root /opt/ai/stage-ikt.codelabs.site/current/public/; | ||
error_log /opt/ai/stage-ikt.codelabs.site/current/log/nginx_errors.log; | ||
|
||
gzip on; | ||
gzip_comp_level 6; | ||
gzip_proxied any; | ||
gzip_types text/plain text/css application/javascript application/octet-stream; | ||
|
||
location @stage_backend { | ||
proxy_pass http://stage_backend; | ||
proxy_redirect off; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
} | ||
|
||
location /cable { | ||
proxy_pass http://stage_backend; | ||
proxy_set_header Connection Upgrade; | ||
proxy_set_header Upgrade websocket; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
} | ||
|
||
location /assets { | ||
expires max; | ||
try_files $uri @stage_backend; | ||
} | ||
|
||
location / { | ||
try_files $uri @stage_backend; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Unit] | ||
Description = IKT Application | ||
After = network.service | ||
|
||
[Service] | ||
User = arch-user | ||
Group = arch-user | ||
WorkingDirectory = /opt/ai/ikt.codelabs.site/current | ||
Environment = 'RAILS_ENV=production' | ||
Environment = 'SOCKET=unix:///opt/ai/ikt.codelabs.site/current/tmp/sockets/server.sock' | ||
Environment = 'PIDFILE=/opt/ai/ikt.codelabs.site/current/tmp/pids/server.pid' | ||
Environment = 'PATH=/home/arch-user/.rbenv/versions/3.1.2/bin:/usr/local/sbin:/usr/local/bin:/usr/bin' | ||
ExecStart = /usr/bin/env bundle exec puma --config /opt/ai/ikt.codelabs.site/current/config/puma.rb | ||
Restart = always | ||
|
||
[Install] | ||
WantedBy = multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Unit] | ||
Description = Stage IKT Application | ||
After = network.service | ||
|
||
[Service] | ||
User = arch-user | ||
Group = arch-user | ||
WorkingDirectory = /opt/ai/stage-ikt.codelabs.site/current | ||
Environment = 'RAILS_ENV=production' | ||
Environment = 'SOCKET=unix:///opt/ai/stage-ikt.codelabs.site/current/tmp/sockets/server.sock' | ||
Environment = 'PIDFILE=/opt/ai/stage-ikt.codelabs.site/current/tmp/pids/server.pid' | ||
Environment = 'PATH=/home/arch-user/.rbenv/versions/3.1.2/bin:/usr/local/sbin:/usr/local/bin:/usr/bin' | ||
ExecStart = /usr/bin/env bundle exec puma --config /opt/ai/stage-ikt.codelabs.site/current/config/puma.rb | ||
Restart = always | ||
|
||
[Install] | ||
WantedBy = multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace :stage_application do | ||
desc 'Start application' | ||
task :start do | ||
on roles(:app), in: :sequence, wait: 5 do | ||
within current_path do | ||
execute 'sudo systemctl start stage-ikt.codelabs.site' | ||
end | ||
end | ||
end | ||
|
||
desc 'Stop application' | ||
task :stop do | ||
on roles(:app), in: :sequence, wait: 5 do | ||
within current_path do | ||
execute 'sudo systemctl stop stage-ikt.codelabs.site' | ||
end | ||
end | ||
end | ||
|
||
desc 'Restart application' | ||
task :restart do | ||
on roles(:app), in: :sequence, wait: 5 do | ||
within current_path do | ||
execute 'sudo systemctl restart stage-ikt.codelabs.site' | ||
end | ||
end | ||
end | ||
end |