Skip to content

Commit

Permalink
Create default.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
patmandenver authored Sep 6, 2016
1 parent 0c1c255 commit e6569f3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions default.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
server {
listen 9090;
server_name localhost;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

0 comments on commit e6569f3

Please sign in to comment.