worker_processes 1; error_log logs/error.log; events { worker_connections 1024; } http { server { listen 8080; include mime.types; charset utf-8; try_files $uri $uri/ $uri.html =404; location = /posts { rewrite ^ /posts/ break; } location ~ ^/(.+)/$ { return 302 /$1; } location /css { expires 1h; alias css; } } }