From c94d685fd94300cf7a1d338a6832a9e9bf1cde82 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 16 Aug 2020 19:20:13 +0000 Subject: [PATCH] nginx_conf --- sist2_demo.conf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sist2_demo.conf diff --git a/sist2_demo.conf b/sist2_demo.conf new file mode 100644 index 0000000..2477519 --- /dev/null +++ b/sist2_demo.conf @@ -0,0 +1,9 @@ +server { + server_name sist2.simon987.net; + + location / { + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_pass http://misc.lxd:4090; + } +}