1
0
Fork 0
forked from exozyme/nginx
nginx/exozyme.conf

43 lines
879 B
Text
Raw Normal View History

2021-06-22 03:08:34 +00:00
upstream vnc_proxy {
server 127.0.0.1:6080;
}
2021-05-22 18:30:52 +00:00
server {
2021-05-25 03:24:31 +00:00
listen 80 default_server;
2021-06-17 03:15:07 +00:00
listen [::]:80 default_server;
2021-05-25 03:24:31 +00:00
server_name _;
return 301 https://$host$request_uri;
2021-05-22 18:30:52 +00:00
}
server {
2021-06-17 03:15:07 +00:00
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-05-25 03:24:31 +00:00
server_name exozy.me;
2021-05-22 18:30:52 +00:00
2021-05-25 03:24:31 +00:00
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
2021-05-22 18:30:52 +00:00
root /srv/http/exozyme;
2021-05-25 03:24:31 +00:00
index index.html;
location /.well-known/matrix/server {
return 200 '{"m.server": "chat.exozy.me:443"}';
2021-05-25 03:24:31 +00:00
}
2021-08-02 15:05:27 +00:00
2021-07-24 02:03:44 +00:00
location /.well-known/webfinger {
return 301 https://social.exozy.me$request_uri;
}
2021-08-02 15:05:27 +00:00
location /howtuwu/ {
2021-08-06 15:56:38 +00:00
alias /srv/http/exozy.me/howtuwu/public/;
2021-07-14 02:35:06 +00:00
}
2021-05-25 03:24:31 +00:00
2021-07-20 16:51:12 +00:00
location /~ {
alias /srv/http/pages/users/;
2021-07-20 15:54:24 +00:00
}
2021-06-22 03:08:34 +00:00
2021-05-25 03:24:31 +00:00
location / {
try_files $uri $uri/ =404;
}
2021-05-22 18:30:52 +00:00
}