Skip to content

Instantly share code, notes, and snippets.

@ThienTranDuy
Created August 8, 2021 03:50
Show Gist options
  • Save ThienTranDuy/df7d92391665fd80f10760b323187dfc to your computer and use it in GitHub Desktop.
Save ThienTranDuy/df7d92391665fd80f10760b323187dfc to your computer and use it in GitHub Desktop.
[NGINX - CONFIG] Config SSL Domain - PHP
server {
listen 80;
server_name domain.com www.domain.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name domain.com;
ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
root /var/www/html/domain.com;
index index.html index.htm index.php;
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}
location / {
try_files $uri $uri/ /$uri.php;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment