This repository has been archived on 2023-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
ltt-mapmaker/root/defaults/default

21 lines
354 B
Plaintext

server {
listen 80 default_server;
listen 443 ssl;
root /app/lttmm;
index index.php index.html index.htm;
server_name _;
ssl_certificate /config/keys/cert.crt;
ssl_certificate_key /config/keys/cert.key;
client_max_body_size 0;
location / {
root /app/lttmm;
index index.html index.htm;
}
}