andreped commited on
Commit
fe9fd6f
·
1 Parent(s): 520c932

Added nginx.conf

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