nginx-conf/conf/nginx.conf
2023-05-10 20:01:25 -07:00

30 lines
724 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
include "includes/mime.types";
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
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 80;
server_name mestsa03ec;
include "includes/YODA Viewer.conf";
}
server {
listen 80;
server_name mestsa03ec.ec.local;
include "includes/Mesa GoTo Viewer.conf";
}
}
#cd "C:\Users\ECYODASvc\AppData\Local\IFXApps\nginx-1.20.1"
#.\nginx -t
#.\nginx -s reload