nginx/exozyme.conf

57 lines
1.4 KiB
Text

server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
add_header Strict-Transport-Security "max-age=31536000" always;
ssl_trusted_certificate /etc/letsencrypt/live/exozy.me/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
root /srv/http/exozyme;
index index.html;
location /.well-known/matrix/server {
return 200 '{"m.server": "chat.exozy.me:443"}';
}
location /.well-known/matrix/client {
return 200 '{"m.homeserver": {"base_url": "https://chat.exozy.me"}}';
default_type application/json;
add_header Access-Control-Allow-Origin *;
}
location /.well-known/webfinger {
return 301 https://social.exozy.me$request_uri;
}
location /howtuwu/ {
alias /srv/http/exozyme/howtuwu/public/;
}
location /~ {
alias /srv/http/pages/users/;
}
location /new/ {
proxy_pass http://localhost:6789;
}
location / {
try_files $uri $uri/ =404;
}
}