Apache 配置是否需要在 apache LISTEN 绑定中反映 Nginx 上游 apache 代理?

发布于 2025-01-09 09:07:22 字数 696 浏览 0 评论 0原文

Nginx 运行在 Apache 前面,并为 Apache VirtualHost 做代理(IP:端口)。当 Nginx 在 Apache 之前启动时,Apache 会出错并显示端口已在使用消息。 httpd.conf 应该读取:Listen 80 还是 Listen 10.7.5.53:8051?或收听 127.0.0.1:8051。粘贴如下:

##NGINX
location / {
    root /var/www/wordpress/somename/;
    index index.php index.html index.htm;
    proxy_pass http://127.0.0.1:8051;
    proxy_read_timeout 1200;
    proxy_send_timeout 1200;
    proxy_connect_timeout 75
}

##APACHE                
<VirtualHost *:80>
    ServerName somename.com
    ServerAlias www.somename.com
</VirtualHost>

<VirtualHost *:443>
    ServerAlias www.somename.com
    DocumentRoot "/var/www/wordpress/somename"
</VirtualHost>

Nginx is running in front of Apache and does a proxy (IP:port) for the Apache VirtualHost. When Nginx is started before Apache, Apache errors out with port already in use message. Should httpd.conf read: Listen 80 or Listen 10.7.5.53:8051? or Listen 127.0.0.1:8051. Paste follows:

##NGINX
location / {
    root /var/www/wordpress/somename/;
    index index.php index.html index.htm;
    proxy_pass http://127.0.0.1:8051;
    proxy_read_timeout 1200;
    proxy_send_timeout 1200;
    proxy_connect_timeout 75
}

##APACHE                
<VirtualHost *:80>
    ServerName somename.com
    ServerAlias www.somename.com
</VirtualHost>

<VirtualHost *:443>
    ServerAlias www.somename.com
    DocumentRoot "/var/www/wordpress/somename"
</VirtualHost>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满天都是小星星 2025-01-16 09:07:22

假设 Nginx 侦听端口 80,Apache 无法侦听同一端口。由于 Nginx 代理端口 8051,我可以假设 Apache 应该侦听端口 8051,而不是端口 80。 1 软件 == 1 端口,你不能双重侦听。

User --port 80--> Nginx listen on 80 --proxy to local:8051--> Apache listen on 8051

因此,Listen *:8051 并修改端口 8051 的

Assuming Nginx listens on port 80, Apache cannot listen on that same port. And since Nginx proxies to port 8051, I can assume Apache should be listening on port 8051, and not port 80. 1 software == 1 port, you cannot double listen.

User --port 80--> Nginx listen on 80 --proxy to local:8051--> Apache listen on 8051

So Listen *:8051 and modify the <VirtualHost> for port 8051 as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文