Grav
This commit is contained in:
2020-10-17 12:29:51 +05:30
parent 60aed543d3
commit 499c67a336
6 changed files with 174 additions and 0 deletions

16
grav/files/nginx.conf.j2 Normal file
View File

@ -0,0 +1,16 @@
server {
listen 80;
server_name {{ http_host }};
location / {
proxy_set_header Host $host:$server_port;
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:{{ host_port }};
}
}