程序员@老李 - Nginx https://blog.mostion.com/category/nginx/ zh-CN Thu, 02 Nov 2023 16:26:00 +0800 Thu, 02 Nov 2023 16:26:00 +0800 配置 typecho 博客系统 - nginx config https://blog.mostion.com/archives/3/ https://blog.mostion.com/archives/3/ Thu, 02 Nov 2023 16:26:00 +0800 Jason # nginx config server { listen 80; server_name yourdomain.com; root /home/yourdomain/www/; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; } location ~ .*\.php(\/.*)*$ { include fastcgi.conf; fastcgi_pass 127.0.0.1:9000; } access_log logs/yourdomain.log combined; } ]]> 0 https://blog.mostion.com/archives/3/#comments https://blog.mostion.com/feed/category/nginx/