This commit is contained in:
Mike Phares 2023-11-16 08:23:53 -07:00
parent 98dd5236f7
commit 8b02e1303a
2 changed files with 18 additions and 5 deletions

View File

@ -6,5 +6,6 @@
"files.exclude": {
"**/.git": false
},
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*"
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*",
"thunder-client.saveToWorkspace": false
}

View File

@ -1,4 +1,16 @@
location / {
root "D://www//github";
index index.html index.htm;
}
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";
}