Apache 和 nginx 之间的配置

httpd.conf的配置:
要点端口:Listen 88
目录:DocumentRoot “/home/www”
另外:Directory 要加”/home/www”
服务器名:ServerName 10.139.104.41:88

nginx.conf 配置文件:

location /tupian{
proxy_pass http://127.0.0.1:88/;
}

下面可以直接访问本地目录:
location /images2 {
alias /home/www/images;
}

你可能感兴趣的:(Apache 和 nginx 之间的配置)