我在该 Web 服务器上使用 nginx 的 vps 我在 /etc/nginx/conf.d 上有 2 个 conf (host1.com,host2.com) 文件,但有 2 个域访问同一站点。这些站点使用不同的技术 1 PHP(Apache 在 88 上运行)和 1 python(gunicorn 在 5000 上运行)这两个站点都可以使用这些端口从外部正确访问。
站点 1 会议
server{
listen 80;
root /var/www/host1.com/public;
index index.php index.html index.htm;
server_name host1.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:88;
}
location ~ /\.ht {
deny all;
}
}
主机2配置
server {
listen 80;
server_name host2.com;
access_log /var/log/nginx/fundacion.log;
location / {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
提前致谢。