Set dev port

This commit is contained in:
Jesse C. Fisher 2019-03-15 23:34:18 -07:00
parent 9a3c468ed7
commit 31cca80fc1
3 changed files with 61 additions and 3 deletions

View File

@ -1,4 +1,7 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby
if ENV['RAILS_ENV'] == 'development'
ENV['PORT'] = '9012'
end
APP_PATH = File.expand_path('../../config/application', __FILE__) APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot' require_relative '../config/boot'
require 'rails/commands' require 'rails/commands'

View File

@ -3,13 +3,18 @@ default: &default
encoding: unicode encoding: unicode
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
template: template0 template: template0
password: password: 2wsx1qaz
development: development:
<<: *default <<: *default
database: thirteen_development database: thirteen_development_example
test:
<<: *default
database: thirteen_test_example
production: production:
<<: *default <<: *default
database: thirteen_production database: thirteen_production_example
username: <%= ENV['THIRTEEN_DB_USER'] %> username: <%= ENV['THIRTEEN_DB_USER'] %>
password: <%= ENV['THIRTEEN_DB_PASSWORD'] %> password: <%= ENV['THIRTEEN_DB_PASSWORD'] %>

View File

@ -0,0 +1,50 @@
upstream 13dev {
server localhost:9012;
}
server {
server_name 13dev.quaff.top;
root /home/jesse/web/thirteen-tien-len/public;
access_log /home/jesse/web/thirteen-tien-len/log/nginx.log;
try_files $uri @app;
location @app {
proxy_pass http://13dev;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
proxy_next_upstream error timeout invalid_header http_502;
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/13dev.quaff.top/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/13dev.quaff.top/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = 13dev.quaff.top) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name 13dev.quaff.top;
listen 80;
return 404; # managed by Certbot
}