worker_processes 1; events { worker_connections 1024; } http { include conf/mime.types; default_type application/octet-stream; access_log logs/access.log; sendfile on; keepalive_timeout 65; gzip on; server { listen 80; server_name localhost; location / { root /www/pages; index index.html; } } }