nginx/exozyme.conf
2021-09-06 21:34:41 -05:00

43 lines
880 B
Text

upstream vnc_proxy {
server 127.0.0.1:6080;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
root /srv/http/exozy.me;
index index.html;
location /.well-known/matrix/server {
return 200 '{"m.server": "chat.exozy.me:443"}';
}
location /.well-known/webfinger {
return 301 https://social.exozy.me$request_uri;
}
location /howtuwu/ {
alias /srv/http/exozy.me/howtuwu/public/;
}
location /~ {
alias /srv/http/pages/users/;
}
location / {
try_files $uri $uri/ =404;
}
}