add new server

master
Matthew 2023-04-08 17:11:31 -04:00
parent 3d553cb3bf
commit 8ee70ee68f
1 changed files with 10 additions and 0 deletions

View File

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