You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
495 B
30 lines
495 B
server { |
|
server_name _; |
|
|
|
listen 443 ssl; |
|
listen [::]:443 ssl; |
|
|
|
ssl_certificate /etc/ssl/cert.crt; |
|
ssl_certificate_key /etc/ssl/key.key; |
|
|
|
root /var/www/html; |
|
|
|
index index.php index.html index.htm index.nginx-debian.html; |
|
autoindex on; |
|
|
|
location / { |
|
try_files $uri $uri/ =404; |
|
} |
|
|
|
location ~ \.php$ { |
|
include snippets/fastcgi-php.conf; |
|
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; |
|
} |
|
} |
|
|
|
server { |
|
listen 80; |
|
listen [::]:80; |
|
|
|
return 301 https://$server_name$request_uri; |
|
}
|
|
|