20 lines
485 B
Nginx Configuration File
20 lines
485 B
Nginx Configuration File
server {
|
|
listen *:443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name www.schottelius.org;
|
|
|
|
access_log /home/services/www/nico/www.schottelius.org/logs/access.log;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/www.schottelius.org/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/www.schottelius.org/privkey.pem;
|
|
|
|
index index.html index.htm;
|
|
|
|
|
|
|
|
location / {
|
|
root /home/services/www/nico/www.schottelius.org/www;
|
|
autoindex on;
|
|
}
|
|
}
|