Add new service "href.vlw.se" #4

Merged
vlw merged 2 commits from feat/add-href into master 2025-02-09 10:31:03 +01:00
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;
}
}