Files
2026-07-05 18:06:07 +07:00

17 lines
368 B
Plaintext

server {
listen 443 ssl;
ssl_certificate <censored>;
ssl_certificate_key <censored>;
ssl_dhparam <censored>;
server_name aula.c-iv.ru;
root /var/www/aula;
index index.html;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
allow all;
try_files $uri $uri/ /index.html;
}
}