aboutsummaryrefslogtreecommitdiffstats
path: root/openresty-ext/src/assembly/resources/openresty/nginx/sites-enabled/README.md
blob: d57d687f7cbbc7527c24adb2ec7219ff2485b405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
README
===============

The directory to store configuration files that configs another server except the default listening server(e.g 10080).
The config file must be a *.conf file. For example:
#server1.conf
~~~
server {
	listen 20080;
	
	location =/info {
	   echo "another server 20080";  
	}
}
~~~