2023-04-08 17:11:31 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name local2.mracs.dev;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://localhost:8080;
|
2023-04-08 17:26:40 -04:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2023-04-08 17:11:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|