From 65c48d074399bef4d5642181a07d1677c4a6c4d0 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 21 Mar 2025 14:29:09 +0100 Subject: [PATCH] feat: add new service "srv.vlw.se" --- 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; + } +}