15 lines
No EOL
418 B
Nginx Configuration File
15 lines
No EOL
418 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name 2025.fossy.us;
|
|
root /var/www/2025.fossy.us;
|
|
index index.html;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name 2025.fossy.us;
|
|
root /var/www/2025.fossy.us;
|
|
index index.html;
|
|
ssl_certificate /etc/letsencrypt/live/2025.fossy.us/fullchain.pem
|
|
ssl_certificate_key /etc/letsencrypt/live/2025.fossy.us/privkey.pem
|
|
} |