sulu: added nginx conf for port 8080

This commit is contained in:
Suru Dissanaike 2021-05-12 09:16:58 +00:00
parent 2e6ac5bb49
commit f514d81709

28
sulu/files/etc/nginx.conf Normal file
View file

@ -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;
}
}
}