Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server
- {
- listen 80;
- server_name yourdomain.com; #将yourdomain.com改为你自己的ddns解析所用域名
- index index.html;
- root /home/speedtest-5.2;
- location ~ [^/]\.php(/|$)
- {
- try_files $uri =404;
- fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
- {
- return 404;
- }
- access_log /var/log/nginx/spt.log;
- error_log /var/log/nginx/spt.log;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement