1
0

Chall added

This commit is contained in:
2019-08-09 01:34:07 +02:00
parent 49bf0da65f
commit 2d62f7079b
61 changed files with 1489 additions and 9 deletions

15
nginx/default Normal file
View File

@ -0,0 +1,15 @@
server {
listen 443 ssl;
server_name _;
root /var/www/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
}