准备工作,先安装好nginx和php,建议大家去看看 www.phpcxz.com 里面有篇详细的安装文章.我们还是详细讲配置吧 首先配置apache.确保apache有mod_fastcgi.so模块 #配置apache以php-cgi方式跑phpScriptAlias /fcgi-bin/ "/usr/local/webserver/php/bin/" 这是p
准备工作,先安装好nginx和php,建议大家去看看www.phpcxz.com里面有篇详细的安装文章.我们还是详细讲配置吧
首先配置apache.确保apache有mod_fastcgi.so模块
#配置apache以php-cgi方式跑php ScriptAlias /fcgi-bin/ "/usr/local/webserver/php/bin/" 这是php-bin的路径 AddHandler php-fastcgi .php Action php-fastcgi /fcgi-bin/php-cgi AddType application/x-httpd-php .php最后开始配置nginx实现反向代理,这里重点写server的配置
server { listen 80; server_name localhost; access_log /var/log/nginx/access.log; root /var/www; error_page 404 /40x.html; location = /40x.html{ root html/404; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } location / { index index.php index.html index.htm; } location ~ \.php$ { proxy_pass http://127.0.0.1:8080;#后端交给apache
#其他的配置 } #图片、CSS、JS交给Nginx处理,缓存到本地 location ~* \.(jpg|jpeg|gif|png)$ { access_log off; expires 30d; } }
这样配置就好了。 我先记下这些,供以后查看.
原文地址:nginx+apache+php-fpm的配置, 感谢原作者分享。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
