From fea0ef77c8c98dfadd2f9d29804653293fd31c99 Mon Sep 17 00:00:00 2001 From: a73x Date: Sun, 25 Aug 2024 15:14:41 +0100 Subject: feat: add templating --- proxy/nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 proxy/nginx.conf (limited to 'proxy/nginx.conf') diff --git a/proxy/nginx.conf b/proxy/nginx.conf new file mode 100644 index 0000000..4095372 --- /dev/null +++ b/proxy/nginx.conf @@ -0,0 +1,14 @@ +server { + listen 8080; + listen [::]:8080; + + server_name a73x.sh; + + + location / { + proxy_ssl_session_reuse off; + proxy_ssl_server_name on; + proxy_pass https://home.folk-amberjack.ts.net/; + proxy_set_header X-Forwarded-Host $http_host; + } +} -- cgit v1.2.3