2024-08-30 09:32:25 +10:00
|
|
|
server {
|
|
|
|
listen 80;
|
2025-07-25 22:28:57 +10:00
|
|
|
server_name 2026.fossy.us;
|
|
|
|
root /var/www/2026.fossy.us;
|
2024-08-30 09:32:25 +10:00
|
|
|
index index.html;
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
2025-07-25 22:28:57 +10:00
|
|
|
server_name 2026.fossy.us;
|
|
|
|
root /var/www/2026.fossy.us;
|
2024-08-30 09:32:25 +10:00
|
|
|
index index.html;
|
2025-07-25 22:28:57 +10:00
|
|
|
ssl_certificate /etc/letsencrypt/live/2026.fossy.us/fullchain.pem
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/2026.fossy.us/privkey.pem
|
2024-08-30 09:32:25 +10:00
|
|
|
}
|