change to subdomain

master
Matthew 2023-04-28 20:32:12 -04:00
parent e00d30dde7
commit 66bae18268
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +0,0 @@
location /wiki/ {
proxy_pass http://localhost:3000/;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name w.mracs.dev;
location / {
proxy_pass http://localhost:3000;
}
}