From 905f1f53bdb1e024e2b80e62528c881e46c700d2 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 21 Mar 2025 14:30:04 +0100 Subject: [PATCH] feat: add new service "srv.vlw.se" (#7) Reviewed-on: https://git.vlw.se/config/nginx/pulls/7 --- sites-available/8009-vlw-srv.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sites-available/8009-vlw-srv.conf diff --git a/sites-available/8009-vlw-srv.conf b/sites-available/8009-vlw-srv.conf new file mode 100644 index 0000000..69a36cc --- /dev/null +++ b/sites-available/8009-vlw-srv.conf @@ -0,0 +1,14 @@ +server { + listen 443 ssl; + + server_name srv.vlw.se *.srv.vlw.se; + + include snippets/srv.vlw.se-ssl; + + location / { + proxy_pass http://localhost:8009; + + proxy_set_header Host $http_host; + proxy_pass_request_headers on; + } +}