# Marketing site — HTTP server block (pre-SSL) # Serves static files and handles ACME challenges for certificate acquisition # Replaced by marketing-ssl.conf once SSL is acquired server { listen 80; server_name MARKETING_DOMAIN_PLACEHOLDER; location /.well-known/acme-challenge/ { root /var/www/certbot; } location / { root /var/www/marketing; index index.html; try_files $uri $uri/ =404; } }