feat: add new service "href.vlw.se" (#4)

Reviewed-on: #4
This commit is contained in:
Victor Westerlund 2025-02-09 10:31:03 +01:00
parent 8120697609
commit 4f984d805f
4 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name href.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8007;
}
}

View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name api-href.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8008;
}
}