Compare commits
1 Commits
desktop-bm
...
BIORAD4
Author | SHA1 | Date | |
---|---|---|---|
820804249f |
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -6,5 +6,6 @@
|
|||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/.git": false
|
"**/.git": false
|
||||||
},
|
},
|
||||||
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*"
|
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*",
|
||||||
|
"thunder-client.saveToWorkspace": false
|
||||||
}
|
}
|
@ -1,11 +1,11 @@
|
|||||||
location /
|
location / {
|
||||||
{
|
|
||||||
proxy_pass http://localhost:5555;
|
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection keep-alive;
|
|
||||||
proxy_set_header Host $http_host;
|
|
||||||
proxy_cache_bypass $http_upgrade;
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_pass http://localhost:5555;
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header Connection keep-alive;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
}
|
}
|
||||||
|
|
||||||
# sc create "Baget-5555" start= delayed-auto DisplayName="Baget-5555" binPath= "C:\Users\phares\AppData\Local\IFXApps\BaGet\src\BaGet\bin\Release\net6.0\win-x64\publish\BaGet.exe" obj= "infineon\phares" password= ""
|
# sc create "Baget-5555" start= delayed-auto DisplayName="Baget-5555" binPath= "C:\Users\phares\AppData\Local\IFXApps\BaGet\src\BaGet\bin\Release\net6.0\win-x64\publish\BaGet.exe" obj= "infineon\phares" password= ""
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[req]
|
[req]
|
||||||
default_bits = 2048
|
default_bits = 2048
|
||||||
default_keyfile = desktop-bmv4v66.key
|
default_keyfile = localhost.key
|
||||||
distinguished_name = req_distinguished_name
|
distinguished_name = req_distinguished_name
|
||||||
req_extensions = req_ext
|
req_extensions = req_ext
|
||||||
x509_extensions = v3_ca
|
x509_extensions = v3_ca
|
||||||
@ -11,13 +11,13 @@ countryName_default = US
|
|||||||
stateOrProvinceName = State or Province Name (full name)
|
stateOrProvinceName = State or Province Name (full name)
|
||||||
stateOrProvinceName_default = Arizona
|
stateOrProvinceName_default = Arizona
|
||||||
localityName = Locality Name (eg, city)
|
localityName = Locality Name (eg, city)
|
||||||
localityName_default = Anthem
|
localityName_default = Mesa
|
||||||
organizationName = Organization Name (eg, company)
|
organizationName = Organization Name (eg, company)
|
||||||
organizationName_default = Phares
|
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 = mike.desktop
|
commonName_default = biorad4
|
||||||
commonName_max = 64
|
commonName_max = 64
|
||||||
|
|
||||||
[req_ext]
|
[req_ext]
|
||||||
@ -27,11 +27,6 @@ subjectAltName = @alt_names
|
|||||||
subjectAltName = @alt_names
|
subjectAltName = @alt_names
|
||||||
|
|
||||||
[alt_names]
|
[alt_names]
|
||||||
DNS.1 = mike.desktop
|
DNS.1 = biorad4
|
||||||
DNS.1 = desktop-bmv4v66
|
|
||||||
DNS.2 = localhost
|
DNS.2 = localhost
|
||||||
DNS.3 = 127.0.0.1
|
DNS.3 = 127.0.0.1
|
||||||
|
|
||||||
# https://webscoot.io/blog/create-self-signed-certificate-ubuntu-windows-nginx/
|
|
||||||
# cd "C:\Program Files\Git\usr\bin"
|
|
||||||
# openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout L:\Git\NGINX-Conf\conf\includes\desktop-bmv4v66.key -out L:\Git\NGINX-Conf\conf\includes\desktop-bmv4v66.crt -config L:\Git\NGINX-Conf\conf\includes\desktop-bmv4v66.conf
|
|
1
conf/includes/biorad4.pass
Normal file
1
conf/includes/biorad4.pass
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://intranet.infineon.com/
|
31
conf/includes/cdn.conf
Normal file
31
conf/includes/cdn.conf
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
location /cdn/ {
|
||||||
|
root "D://web-sites//cdn";
|
||||||
|
autoindex on;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
9
conf/includes/code-marketplace.conf
Normal file
9
conf/includes/code-marketplace.conf
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
location / {
|
||||||
|
proxy_pass http://localhost:3001/;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection upgrade;
|
||||||
|
proxy_set_header Accept-Encoding gzip;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
25
conf/includes/code-server.conf
Normal file
25
conf/includes/code-server.conf
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
server {
|
||||||
|
server_name phares3757.ddns.net;
|
||||||
|
location / {
|
||||||
|
proxy_pass http://localhost:8007/;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection upgrade;
|
||||||
|
proxy_set_header Accept-Encoding gzip;
|
||||||
|
}
|
||||||
|
listen [::]:443 ssl ipv6only=on; # managed by Certbot
|
||||||
|
listen 443 ssl; # managed by Certbot
|
||||||
|
ssl_certificate /etc/letsencrypt/live/phares3757.ddns.net/fullchain.pem; # managed by Certbot
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/phares3757.ddns.net/privkey.pem; # managed by Certbot
|
||||||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||||
|
}
|
||||||
|
server {
|
||||||
|
if ($host = phares3757.ddns.net) {
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
} # managed by Certbot
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name phares3757.ddns.net;
|
||||||
|
return 404; # managed by Certbot
|
||||||
|
}
|
8
conf/includes/default.conf
Normal file
8
conf/includes/default.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
server {
|
||||||
|
listen 8008 default_server;
|
||||||
|
listen [::]:8008 default_server;
|
||||||
|
## Trun on /cgi-bin/ support to run CGI apps ##
|
||||||
|
include /etc/nginx/fcgiwrap.conf;
|
||||||
|
root /var/www/html;
|
||||||
|
server_name _;
|
||||||
|
}
|
@ -1,23 +0,0 @@
|
|||||||
-----BEGIN CERTIFICATE-----
|
|
||||||
MIIDvTCCAqWgAwIBAgIUCy4C1wKPnhGgZoOX5Cmu1FT5jKMwDQYJKoZIhvcNAQEL
|
|
||||||
BQAwbjELMAkGA1UEBhMCVVMxEDAOBgNVBAgMB0FyaXpvbmExDzANBgNVBAcMBkFu
|
|
||||||
dGhlbTEPMA0GA1UECgwGUGhhcmVzMRQwEgYDVQQLDAtEZXZlbG9wbWVudDEVMBMG
|
|
||||||
A1UEAwwMbWlrZS5kZXNrdG9wMB4XDTI0MDEwMjAwMDM0OVoXDTI1MDEwMTAwMDM0
|
|
||||||
OVowbjELMAkGA1UEBhMCVVMxEDAOBgNVBAgMB0FyaXpvbmExDzANBgNVBAcMBkFu
|
|
||||||
dGhlbTEPMA0GA1UECgwGUGhhcmVzMRQwEgYDVQQLDAtEZXZlbG9wbWVudDEVMBMG
|
|
||||||
A1UEAwwMbWlrZS5kZXNrdG9wMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
|
|
||||||
AQEAkEP08Go4NBmHmKi9jS3JPPY3iA3apX0PXV37YmN1IMLW6BEX/X90o4FSadQK
|
|
||||||
iyuA0BMXQM/oiM0TfIOtR6ung1aSg/dTgAp6B2SfB6/J08ELb7Mt1tZ9r0L6289X
|
|
||||||
66pWIWBKCCN4jGP69KnF/k95wHoHE99YMgaMGtAQo8r+pSeJRNeIZQ8pS96Cg3k5
|
|
||||||
aynBIxkQAEIGI5DufrpZsRzJJK367KCpz/pyb0jC37iLaCCTVPDfKag9ZvgaZjzw
|
|
||||||
fTX6T17EVfvfLeal/7L7FlC4gRaw5qWAJB+h1DYPHuy4A0lCUhG3aR06RABQADeE
|
|
||||||
7oxWMEwQJeX9YgzGTIFkOC9nLwIDAQABo1MwUTAwBgNVHREEKTAngg9kZXNrdG9w
|
|
||||||
LWJtdjR2NjaCCWxvY2FsaG9zdIIJMTI3LjAuMC4xMB0GA1UdDgQWBBRYO/dy7DEp
|
|
||||||
xS5YJ/0zkF3MmZra8TANBgkqhkiG9w0BAQsFAAOCAQEAgNLGYSES1aQWaE6nKfol
|
|
||||||
ZY7vhTTHK3GI1RrnvzKsOpZiTHjz+mlYH4csrPTBYn++6kX4xDElqxyaWdVLOt/7
|
|
||||||
16KjoXTCJGUBK8kIkpmhGWk0AAPddW2tXCEq9BDHXuqsOUrsQVXJaXeKoJFsRD7F
|
|
||||||
apQAFHvurM+P6L9XdoOHJvlx0cWcAQscWw3tRBfmmBfaNceBoWdK5Aq9jAD48p94
|
|
||||||
tz8P+ALZSdtVAInfZ75KdmY77E4rXNmdasUfv4dO2mzyWUZPNVK1ZFo6jarFN4Tp
|
|
||||||
VcjYG8idl/Mq/nMFSAp2fNCah1LorfOBzVsGAA7o3SLHbwJ7u9Guq+kYY2CFvwWf
|
|
||||||
mA==
|
|
||||||
-----END CERTIFICATE-----
|
|
@ -1,28 +0,0 @@
|
|||||||
-----BEGIN PRIVATE KEY-----
|
|
||||||
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCQQ/Twajg0GYeY
|
|
||||||
qL2NLck89jeIDdqlfQ9dXftiY3UgwtboERf9f3SjgVJp1AqLK4DQExdAz+iIzRN8
|
|
||||||
g61Hq6eDVpKD91OACnoHZJ8Hr8nTwQtvsy3W1n2vQvrbz1frqlYhYEoII3iMY/r0
|
|
||||||
qcX+T3nAegcT31gyBowa0BCjyv6lJ4lE14hlDylL3oKDeTlrKcEjGRAAQgYjkO5+
|
|
||||||
ulmxHMkkrfrsoKnP+nJvSMLfuItoIJNU8N8pqD1m+BpmPPB9NfpPXsRV+98t5qX/
|
|
||||||
svsWULiBFrDmpYAkH6HUNg8e7LgDSUJSEbdpHTpEAFAAN4TujFYwTBAl5f1iDMZM
|
|
||||||
gWQ4L2cvAgMBAAECggEADLxLD7w4yPSmAUaIMUHk/YI45cRfVHOlWxc0XXutN96r
|
|
||||||
bSIxLXpGeDau6VPEOIP3I6dDyr9v5j/AZCIVtnmDWLdYSNkZIHkMS8HIvjt5BD4K
|
|
||||||
/enh9pDJ2KJ/lc8Ikm/fmaOv9Wb4OeCLo3SnW2t1spWzMUBqv0PPs4BBr8v4Tej9
|
|
||||||
IQoiNHMnUv724kHvSGH1yQ7Pdv2oX1eWjZEYjpyZrwN6pne4uizpB5tqYGiu95iE
|
|
||||||
QryRVtBCjmk6iHz3xwXGgTn9Ek8dwg2H1o1wKEv4u5/4Hxq4iI4IMEg+u3rlaVz6
|
|
||||||
3uBRDBFRZhpXoYKbzo7BNj0kCHwijc2UFDQHp2ovOQKBgQDI1720vsFoC4cqH9Dj
|
|
||||||
a0WaJtfgukn/hG6pgt2WmHlx791DgYGojMXWPPnnKGFfZVQExopOsojVybyz1uTZ
|
|
||||||
Dcn2hQabWo6JLnDh36dvaNBAxuyzmfmSXROD0uWeX9qJBPrjY8ao7AvSe7w0cWjY
|
|
||||||
DhgkFlifD3akRc5+EmhFnkCKeQKBgQC34owLJ96oIjef10PS1TPnIkgyciVGq+ES
|
|
||||||
6OUvm0wMHImrDabW4IDGYwGI3lfMAFgOiLM+Y7cd3czZHB7uyxpDr2tfdggR9VB4
|
|
||||||
KzpOmrZtb2Wrew0SBurPNOk1ONwHM9ReAgq4+7xFzYsHGXMWwZZ59hgRSLGhdZ6Y
|
|
||||||
JkUb4ekU5wKBgQCE+YpJ5E5rU86fDkegewKvSG6ABPc/bPBT3ShXMAagcD6gFlvB
|
|
||||||
O8s0yFRxPuQRZCZXrxgdeMluOs5sh6gnKaEBThwMuc1LeGsWsZzK/6t6Z/qKAzUh
|
|
||||||
OezUx8ptrGslcx2ldgcvCnHdXz1Bv6C6A8LqCb2NOpDDvNA12nwdM+TpiQKBgGkO
|
|
||||||
6xoYjlKbMhKFh392RfAhGwSPSJLG8pG+M+ruHBWzXEg5RX/wxkISILdU6O5pp+Wt
|
|
||||||
3lKf3+gVZ8sHEPk3Wuse1wa0RcoU0QPHFsoABIgjo//EDuSkxRTbUv4QXU1UJFoN
|
|
||||||
apjjYl6zH2JP/PwcYF+P5ZJCaRIpRBIDk2ppuKQzAoGBAKmlwZesnk6R4ZBSQkJ9
|
|
||||||
I+2515sv4iyllPkkw43U8IHUZD8iENCtmYpMqqIGf8RYnkxOUR3N56Zx/XEW4foG
|
|
||||||
5bz20mQUq8v4q9iqtNMGzJgMxC9VK3E4nGYdvkRa+Pizu8Lot54ZrzgaishnXFCE
|
|
||||||
pdwvuc9GTJ/bvyCK7jfLu64F
|
|
||||||
-----END PRIVATE KEY-----
|
|
21
conf/includes/dex.conf
Normal file
21
conf/includes/dex.conf
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
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;
|
||||||
|
index index.html index.htm;
|
||||||
|
# root /var/www/html/637998119172547651;
|
||||||
|
root "D://Tmp//phares//www";
|
||||||
|
}
|
||||||
|
location / {
|
||||||
|
index index.html index.htm;
|
||||||
|
# root /var/www/html/637998119172547651;
|
||||||
|
root "D://Tmp//phares//www";
|
||||||
|
# First attempt to serve request as file, then
|
||||||
|
autoindex on;
|
||||||
|
# Send the data in JSON
|
||||||
|
autoindex_format json;
|
||||||
|
addition_types application/json;
|
||||||
|
# Calling from SERVERNAME/autoindex/*
|
||||||
|
add_before_body /NGINdeX.io/header.html;
|
||||||
|
add_after_body /NGINdeX.io/footer.html;
|
||||||
|
# Need to tell that we are sending HTML
|
||||||
|
add_header Content-Type text/html;
|
||||||
|
}
|
16
conf/includes/github.conf
Normal file
16
conf/includes/github.conf
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
server_name github;
|
||||||
|
# https://github
|
||||||
|
ssl_certificate "includes/localhost.crt";
|
||||||
|
ssl_certificate_key "includes/localhost.key";
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
|
||||||
|
location / {
|
||||||
|
root "D://Tmp//phares//www";
|
||||||
|
autoindex on;
|
||||||
|
}
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
include "includes/html-error.conf";
|
||||||
|
}
|
@ -1,24 +1,47 @@
|
|||||||
# location ~ /admin(.*)/$ {
|
|
||||||
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;
|
||||||
# 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;
|
||||||
# mklink /J "D:\Tmp\Phares\www\pictures" "D:\Documents\Pictures"
|
# root /var/www/html/637998119172547651;
|
||||||
# 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;
|
||||||
# Send the data in JSON
|
# Send the data in JSON
|
||||||
autoindex_format json;
|
autoindex_format json;
|
||||||
addition_types application/json;
|
# addition_types application/json;
|
||||||
# Calling from SERVERNAME/autoindex/*
|
# Calling from SERVERNAME/autoindex/*
|
||||||
add_before_body /NGINdeX.io/header.html;
|
# add_before_body /NGINdeX.io/header.html;
|
||||||
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;
|
||||||
|
}
|
||||||
}
|
}
|
28
conf/includes/metrology.conf
Normal file
28
conf/includes/metrology.conf
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
server {
|
||||||
|
listen 4439 ssl http2;
|
||||||
|
listen [::]:4439 ssl http2;
|
||||||
|
# https://oi-metrology-viewer-prod
|
||||||
|
server_name oi-metrology-viewer-prod;
|
||||||
|
# http://oi-metrology-viewer-prod:8080
|
||||||
|
ssl_certificate "includes/oi-metrology-viewer-prod.cer";
|
||||||
|
ssl_certificate_key "includes/oi-metrology-viewer-prod.key";
|
||||||
|
ssl_password_file "includes/oi-metrology-viewer-prod.pass";
|
||||||
|
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
|
||||||
|
location / {
|
||||||
|
autoindex on;
|
||||||
|
root "D://Tmp//phares//wwwroot";
|
||||||
|
}
|
||||||
|
location /api/ {
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_pass http://localhost:5002;
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header Connection keep-alive;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
|
}
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
include "includes/html-error.conf";
|
||||||
|
}
|
||||||
|
|
||||||
|
# see pipeline yml
|
31
conf/includes/stratus.conf
Normal file
31
conf/includes/stratus.conf
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
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 8081;
|
||||||
|
server_name localhost;
|
||||||
|
location / {
|
||||||
|
index index.html index.htm;
|
||||||
|
root "D://IFXApps//Logs";
|
||||||
|
# First attempt to serve request as file, then
|
||||||
|
autoindex on;
|
||||||
|
# Send the data in JSON
|
||||||
|
autoindex_format json;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
server {
|
||||||
|
listen 8082;
|
||||||
|
server_name localhost;
|
||||||
|
location / {
|
||||||
|
index index.html index.htm;
|
||||||
|
root "C://Program Files//Accent";
|
||||||
|
# First attempt to serve request as file, then
|
||||||
|
autoindex on;
|
||||||
|
# Send the data in JSON
|
||||||
|
autoindex_format json;
|
||||||
|
}
|
||||||
|
}
|
4
conf/includes/wwwroot.conf
Normal file
4
conf/includes/wwwroot.conf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
location / {
|
||||||
|
root "D://wwwroot";
|
||||||
|
try_files $uri $uri/ /index.html =404;
|
||||||
|
}
|
@ -4,19 +4,8 @@ events {
|
|||||||
}
|
}
|
||||||
http {
|
http {
|
||||||
include "includes/mime.types";
|
include "includes/mime.types";
|
||||||
|
include "includes/stratus.conf";
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
sendfile on;
|
sendfile on;
|
||||||
keepalive_timeout 65;
|
keepalive_timeout 65;
|
||||||
server {
|
|
||||||
listen 443 ssl http2;
|
|
||||||
listen [::]:443 ssl http2;
|
|
||||||
server_name localhost;
|
|
||||||
ssl_certificate "includes/desktop-bmv4v66.crt";
|
|
||||||
ssl_certificate_key "includes/desktop-bmv4v66.key";
|
|
||||||
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
|
|
||||||
# include "includes/html.conf";
|
|
||||||
location / { proxy_pass http://localhost:8384; }
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
|
||||||
include "includes/html-error.conf";
|
|
||||||
}
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user