Divide the MSB source codes into two repos
[msb/apigateway.git] / openresty-ext / src / assembly / resources / openresty / nginx / sites-enabled / README.md
1 README
2 ===============
3
4 The directory to store configuration files that configs another server except the default listening server(e.g 10080).
5 The config file must be a *.conf file. For example:
6 #server1.conf
7 ~~~
8 server {
9         listen 20080;
10         
11         location =/info {
12            echo "another server 20080";  
13         }
14 }
15 ~~~