bitque/jirs-client/jirs.nginx

38 lines
932 B
Plaintext
Raw Normal View History

server {
listen 80;
# listen 443 ssl http2;
server_name jirs.lvh.me;
charset utf-8;
root /home/eraden/code/eraden/jirs/jirs-client/tmp;
# ssl_certificate /home/eraden/code/eraden/jirs/jirs-client/js/nginx-selfsigned.crt;
# ssl_certificate_key /home/eraden/code/eraden/jirs/jirs-client/js/nginx-selfsigned.key;
2020-06-10 22:03:00 +02:00
2020-06-10 22:11:51 +02:00
# if ($scheme != "https") {
# return 301 https://$host$request_uri;
# }
2020-06-10 22:03:00 +02:00
location ~ .wasm {
2020-06-04 20:47:10 +02:00
default_type application/wasm;
}
location *.js {
2020-06-04 20:47:10 +02:00
default_type application/javascript;
}
location / {
index index.html index.htm;
}
error_page 404 =200 /index.html;
location /ws/ {
proxy_pass http://localhost;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}