16 lines
474 B
Plaintext
16 lines
474 B
Plaintext
|
|
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";
|
|
} |