mracs-configurations/Nginx/Server Blocks/w.mracs.dev.conf

11 lines
164 B
Plaintext
Raw Normal View History

2023-04-28 20:32:12 -04:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name w.mracs.dev;
location / {
proxy_pass http://localhost:3000;
}
}