Skip to content

Commit

Permalink
Add stage env
Browse files Browse the repository at this point in the history
Signed-off-by: Kostiantyn Kostiuk <[email protected]>
  • Loading branch information
kostyanf14 committed Sep 10, 2023
1 parent 00f95e8 commit c47c078
Show file tree
Hide file tree
Showing 18 changed files with 167 additions and 46 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@

# Ignore master key for decrypting credentials and more.
/config/master.key
/config/credentials/staging.key

.DS_Store
5 changes: 5 additions & 0 deletions config/cable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ production:
adapter: redis
url: <%= ENV.fetch 'REDIS_URL', 'redis://localhost:6379/1' %>
channel_prefix: IKT_production

stating:
adapter: redis
url: <%= ENV.fetch 'REDIS_URL', 'redis://localhost:6379/1' %>
channel_prefix: IKT_stating
1 change: 1 addition & 0 deletions config/credentials/staging.yml.enc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vyU/rspkPV7xASHTL+D6GZjum9yfiks8hjMCrMw5UlM4/LpjoojnwJ8wmn/T0WRPy83aYHM3XvGJGnpZk6pQRKFHLSVWyZ+/bpEMVSCGbJz7Bo9L9tgkL5SsJHO15wF3RG3ilvpK/ST/qxbDqoRKQYQguz2f--nbPyJGOHEy7PHrND--qggMThIqP1VgSCy78lHEDw==
4 changes: 4 additions & 0 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ test:
production:
<<: *default
url: <%= ENV.fetch('DATABASE_URL', nil) %>

staging:
<<: *default
url: <%= ENV.fetch('DATABASE_URL', nil) %>
12 changes: 1 addition & 11 deletions config/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,8 @@

set :repo_url, 'https://github.com/amnis-invictus/ikt.edu.vn.ua.git'

set :rails_env, :production

set :default_env, { path: '$HOME/.rbenv/shims:$PATH' }
set :default_env, { path: '$HOME/.rbenv/versions/3.1.2/bin:$PATH' }

append :linked_files, '.env', 'config/master.key'

append :linked_dirs, 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'public/system', 'storage'

set :deploy_to, '/opt/ai/application'

namespace :deploy do
after :finishing, 'application:restart'
after :finishing, 'nginx:reload'
after :finishing, 'bundler:clean'
end
12 changes: 11 additions & 1 deletion config/deploy/production.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
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'

set :rails_env, :production

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
15 changes: 15 additions & 0 deletions config/deploy/staging.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
set :branch, :main

set :deploy_to, '/opt/ai/stage-ikt.codelabs.site'

set :rails_env, :staging

append :linked_files, 'config/credentials/staging.key'

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
1 change: 1 addition & 0 deletions config/environments/staging.rb
2 changes: 1 addition & 1 deletion config/initializers/action_cable.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Rails.application.configure do
if Rails.env.production?
if %w[production staging].include? Rails.env
config.action_cable.allowed_request_origins = ENV.fetch('ACTION_CABLE_ALLOWED_ORIGINS').split(';')
else
config.action_cable.disable_request_forgery_protection = true
Expand Down
2 changes: 1 addition & 1 deletion config/initializers/action_mailer.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Rails.application.configure do
case Rails.env
when 'production'
when 'production', 'staging'
host = ENV.fetch 'APPLICATION_HOST'
config.action_mailer.smtp_settings = Rails.application.credentials.smtp_settings
config.action_mailer.raise_delivery_errors = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
upstream backend {
server unix:///opt/ai/application/current/tmp/sockets/server.sock fail_timeout=0;
upstream ikt_backend {
server unix:///opt/ai/ikt.codelabs.site/current/tmp/sockets/server.sock fail_timeout=0;
}

server {
listen *:80;
server_name ikt.edu.vn.ua ikt.codelabs.site;
return 301 https://$host$request_uri;
}

server {
listen *:443;
server_name ikt.edu.vn.ua ikt.codelabs.site;
client_max_body_size 1024M;
root /opt/ai/application/current/public/;
error_log /opt/ai/application/current/log/nginx_errors.log;
root /opt/ai/ikt.codelabs.site/current/public/;
error_log /opt/ai/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 @backend {
proxy_pass http://backend;
location @ikt_backend {
proxy_pass http://ikt_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://backend;
proxy_pass http://ikt_backend;
proxy_set_header Connection Upgrade;
proxy_set_header Upgrade websocket;
proxy_set_header Host $host;
Expand All @@ -38,10 +39,10 @@ server {

location /assets {
expires max;
try_files $uri @backend;
try_files $uri @ikt_backend;
}

location / {
try_files $uri @backend;
try_files $uri @ikt_backend;
}
}
48 changes: 48 additions & 0 deletions config/nginx/stage-ikt.codelabs.site.conf
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;
}
}
4 changes: 2 additions & 2 deletions config/puma.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
worker_timeout 3600 if rails_env == 'development'
environment rails_env

if rails_env == 'production'
if %w[production staging].include? rails_env
bind ENV.fetch 'SOCKET'
else
port ENV.fetch 'PORT', 3000
end

pidfile ENV.fetch 'PIDFILE', 'tmp/pids/server.pid'

if rails_env == 'production'
if %w[production staging].include? rails_env
# Specifies the number of `workers` to boot in clustered mode.
# Workers are forked web server processes. If using threads and workers together
# the concurrency of the application would be max `threads` * `workers`.
Expand Down
17 changes: 0 additions & 17 deletions config/systemd/application.service

This file was deleted.

17 changes: 17 additions & 0 deletions config/systemd/ikt.codelabs.site.service
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
17 changes: 17 additions & 0 deletions config/systemd/stage-ikt.codelabs.site.service
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=staging'
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
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace :application do
namespace :ikt_application do
desc 'Start application'
task :start do
on roles(:app), in: :sequence, wait: 5 do
within current_path do
execute 'sudo systemctl start application'
execute 'sudo systemctl start ikt.codelabs.site'
end
end
end
Expand All @@ -12,7 +12,7 @@ namespace :application do
task :stop do
on roles(:app), in: :sequence, wait: 5 do
within current_path do
execute 'sudo systemctl stop application'
execute 'sudo systemctl stop ikt.codelabs.site'
end
end
end
Expand All @@ -21,7 +21,7 @@ namespace :application do
task :restart do
on roles(:app), in: :sequence, wait: 5 do
within current_path do
execute 'sudo systemctl restart application'
execute 'sudo systemctl restart ikt.codelabs.site'
end
end
end
Expand Down
28 changes: 28 additions & 0 deletions lib/capistrano/tasks/stage_application.rake
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

0 comments on commit c47c078

Please sign in to comment.