31 lines
760 B
Plaintext
31 lines
760 B
Plaintext
server {
|
|
listen 5050;
|
|
server_name localhost;
|
|
include "includes/html.conf";
|
|
error_page 500 502 503 504 /50x.html;
|
|
include "includes/html-error.conf";
|
|
}
|
|
server {
|
|
listen 8081;
|
|
server_name localhost;
|
|
location / {
|
|
index index.html index.htm;
|
|
root "D://IFXApps//Logs";
|
|
# First attempt to serve request as file, then
|
|
autoindex on;
|
|
# Send the data in JSON
|
|
autoindex_format json;
|
|
}
|
|
}
|
|
server {
|
|
listen 8082;
|
|
server_name localhost;
|
|
location / {
|
|
index index.html index.htm;
|
|
root "C://Program Files//Accent";
|
|
# First attempt to serve request as file, then
|
|
autoindex on;
|
|
# Send the data in JSON
|
|
autoindex_format json;
|
|
}
|
|
} |