fossy-placeholder/deploy/nginx.conf

15 lines
418 B
Nginx Configuration File
Raw Normal View History

server {
listen 80;
2025-07-25 22:28:57 +10:00
server_name 2026.fossy.us;
root /var/www/2026.fossy.us;
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;
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
}