This commit is contained in:
Mike Phares 2025-03-06 12:43:30 -07:00
parent edd3b82e65
commit 22e179840b
2 changed files with 10 additions and 3 deletions

View File

@ -1,12 +1,12 @@
location ~* .(3gp|apng|avi|avif|bmp|css|cur|flv|gif|htm|html|ico|jfif|jpeg|jpg|js|mid|mov|mp3|mp4|mpeg|mpg|ogg|pdf|php|pjp|pjpeg|png|svg|tif|tiff|ttf|txt|wav|webp|wmf|wml|wmv|xml|xml)$ { location ~* .(3gp|apng|avi|avif|bmp|css|cur|flv|gif|htm|html|ico|jfif|jpeg|jpg|js|mid|mov|mp3|mp4|mpeg|mpg|ogg|pdf|php|pjp|pjpeg|png|svg|tif|tiff|ttf|txt|wav|webp|wmf|wml|wmv|xml|xml)$ {
expires 1d; expires 1d;
index index.html index.htm; index index.html index.htm;
root "D://Tmp//phares//www"; root "L://DevOps";
} }
location / { location / {
index index.html index.htm; index index.html index.htm;
# root /var/www/html/637998119172547651; # root /var/www/html/637998119172547651;
root "D://Tmp//phares//www"; root "L://DevOps";
# First attempt to serve request as file, then # First attempt to serve request as file, then
autoindex on; autoindex on;
# Send the data in JSON # Send the data in JSON

View File

@ -39,8 +39,15 @@ http {
include "includes/ProgramData.conf"; include "includes/ProgramData.conf";
} }
server { server {
listen 5054; # listen 5054;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name localhost; 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/json.conf"; include "includes/json.conf";
} }
server { server {