mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-11 11:38:41 +01:00
sulu: added nginx conf for port 8080
This commit is contained in:
parent
2e6ac5bb49
commit
f514d81709
1 changed files with 28 additions and 0 deletions
28
sulu/files/etc/nginx.conf
Normal file
28
sulu/files/etc/nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue