feat: add new service "srv.vlw.se" (#7)

Reviewed-on: #7
This commit is contained in:
Victor Westerlund 2025-03-21 14:30:04 +01:00
parent 8d534bcd93
commit 905f1f53bd

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