-
-
Save xfyuan/488a69c1b005419feb446631627f38e6 to your computer and use it in GitHub Desktop.
Nginx + Let's Encrypt + Rails5 + Puma
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
00 05 01 * * /home/alea12/letsencrypt/letsencrypt-auto certonly --webroot -w /var/www/html -d example.net --renew-by-default && nginx -t && nginx -s reload |
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
# config/puma.rb | |
# ... | |
_proj_path = "#{File.expand_path("../..", __FILE__)}" | |
_proj_name = File.basename(_proj_path) | |
_home = ENV.fetch("HOME") { "/home/alea12" } | |
pidfile "#{_home}/run/#{_proj_name}.pid" | |
bind "unix://#{_home}/run/#{_proj_name}.sock" | |
directory _proj_path |
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
# /etc/nginx/conf.d/rails-5-test.conf | |
upstream rails-5-test { | |
server unix:/home/alea12/run/rails-5-test.sock fail_timeout=0; | |
} | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name example.net; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
ssl_certificate /etc/letsencrypt/live/example.net/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/example.net/privkey.pem; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl on; | |
ssl_prefer_server_ciphers on; | |
ssl_dhparam /etc/nginx/ssl/dhparam.pem; | |
add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains;'; | |
root /home/alea12/rails-5-test/public; | |
try_files $uri/index.html $uri @rails-5-test; | |
location / { | |
proxy_pass http://rails-5-test; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_redirect off; | |
} | |
error_page 500 502 503 504 /500.html; | |
client_max_body_size 4G; | |
keepalive_timeout 30; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment