summaryrefslogtreecommitdiff
path: root/proxy/nginx.conf
diff options
context:
space:
mode:
authora73x <[email protected]>2024-08-25 15:14:41 +0100
committera73x <[email protected]>2024-08-25 15:14:41 +0100
commitfea0ef77c8c98dfadd2f9d29804653293fd31c99 (patch)
tree6dadd3062fc77d37e622838eb6b16a60e2774f4d /proxy/nginx.conf
parent794401aaadfaa4efd91587db40439226231ff303 (diff)
feat: add templating
Diffstat (limited to 'proxy/nginx.conf')
-rw-r--r--proxy/nginx.conf14
1 files changed, 14 insertions, 0 deletions
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;
+ }
+}