17 lines
369 B
Nginx Configuration File
17 lines
369 B
Nginx Configuration File
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name localhost;
|
|
|
|
ssl_certificate /etc/nginx/ssl/frontend-cert.pem;
|
|
ssl_certificate_key /etc/nginx/ssl/frontend-key.pem;
|
|
ssl_protocols TLSv1.3;
|
|
ssl_prefer_server_ciphers off;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|