Added default nginx server block

This commit is contained in:
Luke Else 2022-01-17 20:04:57 +00:00
parent 9985bc4628
commit a51defd03c

14
XXX.co.uk Normal file
View File

@ -0,0 +1,14 @@
server{
listen 80;
server_name XXX.co.uk www.XXX.co.uk;
location / {
proxy_set_header Host $host;
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;
proxy_pass http://localhost:8000;
proxy_read_timeout 90;
}
}