Compare commits

..

1 Commits

Author SHA1 Message Date
47222b1d6c ssl 2023-09-18 16:11:14 -07:00
11 changed files with 109 additions and 86 deletions

View File

@ -1,4 +0,0 @@
location / {
root "D://Websites//Expose-MyIT//ClassDiagram";
try_files $uri $uri/ /index.html =404;
}

View File

@ -1,4 +0,0 @@
location / {
root "D://Websites//Expose-MyIT//Coverage";
try_files $uri $uri/ /index.html =404;
}

8
conf/includes/Gogs.conf Normal file
View File

@ -0,0 +1,8 @@
location / {
proxy_hide_header Authorization;
if ($http_Authorization != "Basic asdf") {
return 401;
}
proxy_set_header Authorization "Basic asdf";
proxy_pass http://localhost:3000;
}

View File

@ -1,20 +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|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|txt|wav|webp|wmf|wml|wmv|xml|xml)$ {
expires 1d; expires 1d;
index index.html index.htm; index index.html index.htm;
# ln -s /etc/nginx/sites-available/json /etc/nginx/sites-enabled/
# ln -s /srv/samba/share/637998119172547651 /var/www/html/637998119172547651
# ln -s /var/www/html/NGINdeX.io /var/www/html/637998119172547651/NGINdeX.io
# ln -s /srv/git /var/www/html/637998119172547651/git
# root /var/www/html/637998119172547651; # root /var/www/html/637998119172547651;
# mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
# mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\GitHub\NGINdeX.io"
root "D://Tmp//phares//www"; root "D://Tmp//phares//www";
} }
location / { location / {
index index.html index.htm; index index.html index.htm;
# root /var/www/html/637998119172547651; # root /var/www/html/637998119172547651;
# mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
# mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\GitHub\NGINdeX.io"
root "D://Tmp//phares//www"; root "D://Tmp//phares//www";
# First attempt to serve request as file, then # First attempt to serve request as file, then
autoindex on; autoindex on;

View File

@ -0,0 +1 @@
nocert

View File

@ -0,0 +1,4 @@
location / {
root "D://www//github";
index index.html index.htm;
}

View File

@ -1,21 +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|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|txt|wav|webp|wmf|wml|wmv|xml|xml)$ {
expires 1d; expires 1d;
index index.html index.htm; index index.html index.htm;
# ln -s /etc/nginx/sites-available/json /etc/nginx/sites-enabled/ root "C://SAM_2.1.10//Result";
# ln -s /srv/samba/share/637998119172547651 /var/www/html/637998119172547651
# ln -s /var/www/html/NGINdeX.io /var/www/html/637998119172547651/NGINdeX.io
# ln -s /srv/git /var/www/html/637998119172547651/git
# root /var/www/html/637998119172547651;
# mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
# mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\GitHub\NGINdeX.io"
root "D://Tmp//phares//www";
} }
location / { location / {
index index.html index.htm; index index.html index.htm;
# root /var/www/html/637998119172547651; # root /var/www/html/637998119172547651;
# mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures" root "C://SAM_2.1.10//Result";
# mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\GitHub\NGINdeX.io"
root "D://Tmp//phares//www";
# 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
@ -26,4 +17,31 @@ location / {
# add_after_body /NGINdeX.io/footer.html; # add_after_body /NGINdeX.io/footer.html;
# Need to tell that we are sending HTML # Need to tell that we are sending HTML
# add_header Content-Type text/html; # add_header Content-Type text/html;
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
#
# Custom headers and headers various browsers *should* be OK with but aren't
#
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
#
# Tell client that this pre-flight info is valid for 20 days
#
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
if ($request_method = 'POST') {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
}
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
}
} }

View File

@ -17,7 +17,7 @@ organizationName_default = Infineon Technologies Americas Corp.
organizationalUnitName = organizationalunit organizationalUnitName = organizationalunit
organizationalUnitName_default = Development organizationalUnitName_default = Development
commonName = Common Name (e.g. server FQDN or YOUR name) commonName = Common Name (e.g. server FQDN or YOUR name)
commonName_default = mestsa008.infineon.com commonName_default = example.com
commonName_max = 64 commonName_max = 64
[req_ext] [req_ext]
@ -27,7 +27,7 @@ subjectAltName = @alt_names
subjectAltName = @alt_names subjectAltName = @alt_names
[alt_names] [alt_names]
DNS.1 = mestsa008.infineon.com DNS.1 = example.com
DNS.2 = localhost DNS.2 = localhost
DNS.3 = 127.0.0.1 DNS.3 = 127.0.0.1
@ -35,3 +35,7 @@ DNS.3 = 127.0.0.1
# cd "C:\Program Files\Git\usr\bin" # cd "C:\Program Files\Git\usr\bin"
# openssl # openssl
# req -x509 -nodes -days 365 -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\localhost.crt -config L:\Git\NGINX-Conf\conf\includes\localhost.conf # req -x509 -nodes -days 365 -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\localhost.key -out L:\Git\NGINX-Conf\conf\includes\localhost.crt -config L:\Git\NGINX-Conf\conf\includes\localhost.conf
# openssl
# pkcs12 -in L:\git\NGINX-Conf\conf\includes\ec-server.pfx -nocerts -out L:\Git\NGINX-Conf\conf\includes\ec-server.key
# openssl
# pkcs12 -in L:\git\NGINX-Conf\conf\includes\ec-server.pfx -clcerts -nokeys -out L:\Git\NGINX-Conf\conf\includes\ec-server.crt

View File

@ -1,4 +1,4 @@
location / { location / {
root "D://www"; root "C://SAM_2.1.10//Result";
index index.html index.htm; index index.html index.htm;
} }

View File

@ -1,4 +1,4 @@
location / { location / {
root "D://Websites//Expose-MyIT//Client//wwwroot"; root "C://SAM_2.1.10//Result";
try_files $uri $uri/ /index.html =404; try_files $uri $uri/ /index.html =404;
} }

View File

@ -7,24 +7,29 @@ http {
default_type application/octet-stream; default_type application/octet-stream;
sendfile on; sendfile on;
keepalive_timeout 65; keepalive_timeout 65;
# server { server {
# listen 80; listen 80;
# listen 443 ssl http2; # listen 443 ssl http2;
# listen [::]:443 ssl http2; # listen [::]:443 ssl http2;
# server_name localhost; server_name localhost;
# ssl_certificate "includes/localhost.crt"; # ssl_certificate "includes/localhost.crt";
# ssl_certificate_key "includes/localhost.key"; # ssl_certificate_key "includes/localhost.key";
# ssl_certificate "includes/ec-server.cer";
# ssl_certificate "includes/ec-server.crt";
# ssl_certificate_key "includes/ec-server.key";
# ssl_password_file "includes/ec-server.pass";
# ssl_protocols TLSv1.2 TLSv1.1 TLSv1; # ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
# # include "includes/html.conf"; # include "includes/html.conf";
# include "includes/BaGet.conf"; include "includes/BaGet.conf";
# error_page 500 502 503 504 /50x.html; error_page 500 502 503 504 /50x.html;
# include "includes/html-error.conf"; include "includes/html-error.conf";
# } # include "includes/github.conf";
# server { }
# listen 4430; server {
# server_name iscn5cg1325c0x.infineon.com; listen 4430;
# include "includes/BaGet.conf"; server_name iscn5cg1325c0x.infineon.com;
# } include "includes/BaGet.conf";
}
server { server {
listen 5051; listen 5051;
server_name localhost; server_name localhost;
@ -35,11 +40,11 @@ http {
server_name localhost; server_name localhost;
include "includes/dex.conf"; include "includes/dex.conf";
} }
# server { server {
# listen 5053; listen 5053;
# server_name localhost; server_name localhost;
# include "includes/ProgramData.conf"; include "includes/ProgramData.conf";
# } }
server { server {
listen 5054; listen 5054;
server_name localhost; server_name localhost;
@ -50,37 +55,36 @@ http {
server_name localhost; server_name localhost;
include "includes/wwwroot.conf"; include "includes/wwwroot.conf";
} }
server {
listen 5056;
server_name localhost;
include "includes/Coverage.conf";
} }
server { # mkdir "L:\DevOps\Mesa_FI"
listen 5057; # cd "L:\DevOps\Mesa_FI"
server_name localhost; # git clone https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINX-Conf
include "includes/ClassDiagram.conf"; # -
} # rmdir /s "C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1\conf"
# server { # mklink /J "C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1\conf" "L:\Git\NGINX-Conf\conf"
# listen 8080; # -
# server_name ~(oi-metrology-viewer-archive).mes.infineon.com; # As administrator
# location / { # -
# include "includes/Archive.conf"; # cd "C:\Users\Administrator\AppData\Local\IFXApps\nssm-2.24\win64"
# } # nssm install "nginx"
# } # -
# server { # C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1\nginx.exe
# listen 8080; # C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1
# server_name ~(oi-metrology-viewer-prod).mes.infineon.com; # -
# location / { # start nginx
# include "includes/Viewer.conf"; # C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1\logs\service.out.log
# } # C:\Users\Administrator\AppData\Local\IFXApps\nginx-1.20.1\logs\service.error.log
# } # -
# server { # mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
# listen 8088; # mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\Git\NGINdeX.io"
# server_name *.mes.infineon.com; # mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
# include "includes/EAF-Viewer.Server.conf"; # mklink /J "D:\Tmp\Phares\www\NGINdeX.io" "L:\DevOps\Mesa_FI\NGINdeX.io"
# } # -
} # ln -s /etc/nginx/sites-available/json /etc/nginx/sites-enabled/
# mklink /J "C:\Users\MESFISysAdmin\AppData\Local\IFXApps\nginx-1.20.1\conf" "L:\Git\NGINX-Conf\conf" # ln -s /srv/samba/share/637998119172547651 /var/www/html/637998119172547651
# cd "C:\Users\ECMESEAF\AppData\Local\IFXApps\nginx-1.20.1" # ln -s /var/www/html/NGINdeX.io /var/www/html/637998119172547651/NGINdeX.io
# ln -s /srv/git /var/www/html/637998119172547651/git
# -
# cd "C:\Users\phares\AppData\Local\IFXApps\nginx-1.20.1"
# .\nginx -t # .\nginx -t
# .\nginx -s reload # .\nginx -s reload