Fediversity/matrix/nginx/conf/synapse-admin.conf

17 lines
466 B
Text
Raw Normal View History

server {
2024-11-27 18:29:58 +01:00
listen 443 ssl;
listen [::]:443 ssl;
2025-02-19 18:44:00 +01:00
2024-11-27 18:29:58 +01:00
ssl_certificate /etc/letsencrypt/live/admin.example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/admin.example.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/ssl/dhparams.pem;
2025-02-19 18:44:00 +01:00
2024-11-27 18:29:58 +01:00
server_name admin.example.com;
2025-02-19 18:44:00 +01:00
2024-11-27 18:29:58 +01:00
root /var/www/synapse-admin;
2025-02-19 18:44:00 +01:00
2024-11-27 18:29:58 +01:00
access_log /var/log/nginx/admin-access.log;
error_log /var/log/nginx/admin-error.log;
}