diff --git a/sulu/files/etc/nginx.conf b/sulu/files/etc/nginx.conf new file mode 100644 index 000000000..5ec82240f --- /dev/null +++ b/sulu/files/etc/nginx.conf @@ -0,0 +1,28 @@ +user nobody nogroup; +worker_processes 1; + +events { + worker_connections 1024; +} + + +http { + include mime.types; + sendfile on; + keepalive_timeout 65; + + server { + listen 8080; + server_name localhost; + + location / { + try_files $uri /index.html; + root /www; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root html; + } + } +} \ No newline at end of file