From e88abdb4372520cfa9b63a8e22ae2e7ba14e8dc6 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Wed, 17 Nov 2021 22:44:54 +0100 Subject: Add example nginx config snippet --- example/nginx.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 example/nginx.conf (limited to 'example') diff --git a/example/nginx.conf b/example/nginx.conf new file mode 100644 index 0000000..d6a3199 --- /dev/null +++ b/example/nginx.conf @@ -0,0 +1,20 @@ +server { + listen 8080; + server_name travel3; + + location / { + proxy_pass http://127.0.0.1:5555; +# fastcgi_pass 127.0.0.1:5555; +# include fastcgi_params; + } + + location /static/ { + internal; + root /home/the_jk/travels; + } + + location /media/ { + internal; + root /home/the_jk/travels; + } +} -- cgit v1.2.3-70-g09d2