docs(readme): update nginx example

This commit is contained in:
orhun 2021-07-27 16:16:31 +03:00
parent cb95016d5e
commit 466a87b8d2
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
1 changed files with 7 additions and 6 deletions

View File

@ -103,12 +103,13 @@ Example server configuration with reverse proxy:
server {
listen 80;
location / {
proxy_pass http://localhost:8000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
add_header X-XSS-Protection "1; mode=block";
add_header X-Frame-Options "sameorigin";
add_header X-Content-Type-Options "nosniff";
proxy_pass http://localhost:8000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
add_header X-XSS-Protection "1; mode=block";
add_header X-Frame-Options "sameorigin";
add_header X-Content-Type-Options "nosniff";
}
}
```