我在同一个Ubuntu Server 14.04中有nginx和apache2,我想使用nginx作为代理服务器。我的想法是当人们写www.mysite.com或www2.mysite.com重定向到apache,我有两个站点。
Nginx位于端口80,Apache位于端口81。
答案 0 :(得分:1)
server {
listen 80;
root /var/www/;
index index.php index.html index.htm;
server_name example.com www.example.com www1.example.com;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:81;
}
location ~ /\.ht {
deny all;
}
}
希望能给你一些想法。