35 lines
823 B
Nginx Configuration File
35 lines
823 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 5051;
|
|
server_name localhost;
|
|
include "includes/www.conf";
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name yoda-dev.*;
|
|
include "includes/YODA Viewer.conf";
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name goto-dev.*;
|
|
include "includes/Mesa GoTo Viewer.conf";
|
|
}
|
|
}
|
|
#cd "C:\Users\MESYODASVC\AppData\Local\IFXApps\nginx-1.20.1"
|
|
#.\nginx -t
|
|
#.\nginx -s reload |