http only
This commit is contained in:
31
conf/includes/stratus.conf
Normal file
31
conf/includes/stratus.conf
Normal file
@ -0,0 +1,31 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user