Move prod config files to prod branch

This commit is contained in:
Mouse Reeve
2020-10-16 13:02:58 -07:00
parent b32fce25d9
commit b8040cd0dc
3 changed files with 1 additions and 121 deletions

View File

@ -20,46 +20,3 @@ server {
alias /app/static/;
}
}
# PROD version
#
#server {
# listen [::]:80;
# listen 80;
#
# server_name your-domain.com www.your-domain.com;
#
# location ~ /.well-known/acme-challenge {
# allow all;
# root /var/www/certbot;
# }
#
# # redirect http to https www
# return 301 https://www.your-domain.com$request_uri;
#}
#
#server {
# listen [::]:443 ssl http2;
# listen 443 ssl http2;
#
# server_name your-domain.com;
#
# # SSL code
# ssl_certificate /etc/nginx/ssl/live/your-domain.com/fullchain.pem;
# ssl_certificate_key /etc/nginx/ssl/live/your-domain.com/privkey.pem;
#
# location / {
# proxy_pass http://web;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# proxy_set_header Host $host;
# proxy_redirect off;
# }
#
# location /images/ {
# alias /app/images/;
# }
#
# location /static/ {
# alias /app/static/;
# }
#}