-
-
Save binghuiyin/6044342fbf7f8da3307a763e21bdbe48 to your computer and use it in GitHub Desktop.
Nginx conf for SSL and php8.3-fpm on Ubuntu 24.04.1 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log_format main '$remote_addr - $remote_user [$time_local] $status ' | |
'"$request" $body_bytes_sent "$http_referer" ' | |
'"$http_user_agent" "$http_x_forwarded_for"'; | |
server { | |
listen 80; | |
server_name u24.webexample.win; | |
location / { | |
return 301 https://$host$request_uri; | |
} | |
} | |
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
server_name u24.webexample.win; | |
access_log /var/log/nginx/host.access.log main; | |
root /home/davidyin/u24.webexample.win; | |
index index.php index.html index.htm; | |
location / { | |
try_files $uri $uri/ = 404; | |
} | |
ssl_certificate /home/davidyin/ssl/cert; | |
ssl_certificate_key /home/davidyin/ssl/key; | |
ssl_session_timeout 1d; | |
ssl_session_cache shared:MozSSL:10m; # about 40000 sessions | |
ssl_session_tickets off; | |
# Diffie-Hellman parameter for DHE ciphersuites, recommended 2048 bits | |
ssl_dhparam /home/davidyin/ssl/dhparam.pem; | |
# modern configuration | |
ssl_protocols TLSv1.3; | |
ssl_prefer_server_ciphers off; | |
# HSTS (ngx_http_headers_module is required) (63072000 seconds) | |
add_header Strict-Transport-Security "max-age=63072000" always; | |
# OCSP stapling | |
ssl_stapling on; | |
ssl_stapling_verify on; | |
# verify chain of trust of OCSP response using Root CA and Intermediate certs | |
ssl_trusted_certificate /home/davidyin/ssl/cert; | |
# replace with the IP address of your resolver | |
resolver 8.8.8.8; | |
# redirect server error pages to the static page /50x.html | |
# | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { | |
root /usr/share/nginx/html; | |
} | |
location ~ \.php$ { | |
include snippets/fastcgi-php.conf; | |
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock; | |
} | |
# deny access to .htaccess files, if Apache's document root | |
# concurs with nginx's one | |
# | |
location ~ /\.ht { | |
deny all; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment