51 lines
1.3 KiB
Nginx Configuration File
51 lines
1.3 KiB
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 80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name localhost;
|
|
# https://localhost
|
|
ssl_certificate "includes/iscn5cg3256cps.infineon.com.crt";
|
|
ssl_certificate_key "includes/iscn5cg3256cps.infineon.com.key";
|
|
# ssl_password_file "includes/iscn5cg3256cps.infineon.com.pass";
|
|
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
|
|
# include "includes/html.conf";
|
|
include "includes/BaGet.conf";
|
|
error_page 500 502 503 504 /50x.html;
|
|
include "includes/html-error.conf";
|
|
# include "includes/github.conf";
|
|
}
|
|
server {
|
|
listen 5051;
|
|
server_name localhost;
|
|
include "includes/www.conf";
|
|
}
|
|
server {
|
|
listen 5052;
|
|
server_name localhost;
|
|
include "includes/dex.conf";
|
|
}
|
|
server {
|
|
listen 5053;
|
|
server_name localhost;
|
|
include "includes/ProgramData.conf";
|
|
}
|
|
server {
|
|
listen 5054;
|
|
server_name localhost;
|
|
include "includes/json.conf";
|
|
}
|
|
server {
|
|
listen 5055;
|
|
server_name localhost;
|
|
include "includes/wwwroot.conf";
|
|
}
|
|
} |