generated from nhcarrigan/template
e8318215a9
- Rewrote README with full directory structure, add/remove site workflows, deploy instructions, and a test suite reference table - Added a one-line header comment to each sites-available/*.conf explaining what category of sites belongs in that file
18 lines
538 B
Plaintext
18 lines
538 B
Plaintext
# wtf.naomi.lgbt personal project.
|
|
server {
|
|
listen 443 ssl;
|
|
server_name wtf.naomi.lgbt;
|
|
ssl_certificate /etc/letsencrypt/live/wtf.naomi.lgbt/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/wtf.naomi.lgbt/privkey.pem;
|
|
client_max_body_size 100M;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_pass http://127.0.0.1:3456;
|
|
proxy_redirect off;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|