Skip to content

Instantly share code, notes, and snippets.

@robotnealan
Last active May 23, 2018 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robotnealan/84c8fbe1956244bd2f57c7f0ac7715ab to your computer and use it in GitHub Desktop.
Save robotnealan/84c8fbe1956244bd2f57c7f0ac7715ab to your computer and use it in GitHub Desktop.
Archived Version of Nginx Config for Ghost
server {
listen 80;
server_name yourdomain.com www.yourdomain.com;
location ~ ^/.well-known {
root /var/www/ghost;
}
location / {
return 301 https://$server_name$request_uri;
}
}
#server {
# listen 80;
# server_name yourdomain.com www.yourdomain.com;
# return 301 https://yourdomain.com$request_uri;
#}
#server {
# listen 443 ssl;
# server_name www.yourdomain.com;
# return 301 $scheme://yourdomain.com$request_uri;
# ssl on;
# ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
# ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
# ssl_prefer_server_ciphers On;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS;
#}
#server {
# listen 443 ssl;
# server_name yourdomain.com;
# root /var/www/ghost;
# index index.html index.htm;
# client_max_body_size 10G;
# location / {
# proxy_pass http://localhost:2368;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# proxy_set_header Host $http_host;
# proxy_set_header X-Forwarded-Proto $scheme;
# proxy_buffering off;
# }
# ssl on;
# ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
# ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
# ssl_prefer_server_ciphers On;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS;
# location ~ ^/.well-known {
# root /var/www;
# }
#}
@robotnealan
Copy link
Author

robotnealan commented May 23, 2018

This is an archived version of my recommended Nginx/Ghost/DigitalOcean config file. For the latest version of this Gist please view https://gist.github.com/robertnealan/891fe8cf3b7541e922e3b39e9ae9fd96

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment