diff --git a/.vscode/settings.json b/.vscode/settings.json index 261bf63..bc8e09f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,5 +6,6 @@ "files.exclude": { "**/.git": false }, - "coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*" + "coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*", + "thunder-client.saveToWorkspace": false } \ No newline at end of file diff --git a/conf/includes/github.conf b/conf/includes/github.conf index 24208a1..d7ec8e4 100644 --- a/conf/includes/github.conf +++ b/conf/includes/github.conf @@ -1,4 +1,16 @@ -location / { - root "D://www//github"; - index index.html index.htm; -} \ No newline at end of file + + 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"; + } \ No newline at end of file