add nginx example config
This commit is contained in:
parent
47b957361e
commit
8d8498b244
1 changed files with 40 additions and 0 deletions
40
examples/nginx/travelynx.conf
Normal file
40
examples/nginx/travelynx.conf
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
upstream travelynx {
|
||||||
|
server 127.0.0.1:8093;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen [::]:80;
|
||||||
|
listen 0.0.0.0:80;
|
||||||
|
|
||||||
|
server_name travelynx.de;
|
||||||
|
access_log /var/log/nginx/de.travelynx.log anonip;
|
||||||
|
|
||||||
|
rewrite ^/(.*)$ https://travelynx.de/$1 permanent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen [::]:443;
|
||||||
|
listen 0.0.0.0:443;
|
||||||
|
|
||||||
|
server_name travelynx.de;
|
||||||
|
access_log /var/log/nginx/de.travelynx.log anonip;
|
||||||
|
|
||||||
|
location /static {
|
||||||
|
expires 1y;
|
||||||
|
root /srv/www/travelynx/public;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /service-worker.js {
|
||||||
|
expires 1d;
|
||||||
|
root /srv/www/travelynx/public;
|
||||||
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://travelynx;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto "http";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue