New:
Grav
This commit is contained in:
16
grav/files/nginx.conf.j2
Normal file
16
grav/files/nginx.conf.j2
Normal 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 }};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user