Add new service "srv.vlw.se" #7

Merged
vlw merged 1 commit from fix/proxy-pass-srv into master 2025-03-21 14:30:04 +01:00

View file

@ -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;
}
}