Update exozyme.conf

This commit is contained in:
Anthony Wang 2021-07-20 15:54:24 +00:00 committed by GitHub
parent e4f6ef63e2
commit 5222ecfb6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,10 +23,6 @@ server {
location /.well-known/matrix/server {
return 200 '{"m.server": "chat.exozy.me"}';
}
location /.well-known/webfinger {
return 301 https://social.exozy.me$request_uri;
}
location /howtuwu {
alias /srv/http/exozy.me/howtuwu/public;
@ -50,6 +46,10 @@ server {
# Disable cache
proxy_buffering off;
}
location ~ ^/~$ {
rewrite ^~(\w+)\.?.*$ /pages/$1;
}
location / {
try_files $uri $uri/ =404;