andreped commited on
Commit
69c2441
1 Parent(s): ae8bbd9

Added nginx conf

Browse files
Files changed (1) hide show
  1. nginx.conf +17 -0
nginx.conf ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ pid /tmp/nginx.pid;
2
+
3
+ events {
4
+ worker_connections 1024;
5
+ }
6
+
7
+ http {
8
+ server {
9
+ listen 7860;
10
+ server_name localhost;
11
+
12
+ location / {
13
+ root /usr/share/nginx/html;
14
+ index index.html;
15
+ }
16
+ }
17
+ }