# THIS FILE IS MANAGED BY PUPPET, MANUAL CHANGES WILL BE OVERWRITTEN AT THE # NEXT PUPPET RUN. # user www-data; worker_processes auto; pid /run/nginx.pid; events { worker_connections 768; } http { sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; server_names_hash_bucket_size 64; default_type application/octet-stream; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; log_format main '$remote_addr - $remote_user [$time_local] ' '$server_name ' '"$request" $status $body_bytes_sent ' '"$http_referer" "$http_user_agent"'; server { listen 127.0.0.1:8080 default_server; return 301 https://$host$request_uri; } }