清漆 nginx port_in_redirect 8080 在 url

Posted

技术标签:

【中文标题】清漆 nginx port_in_redirect 8080 在 url【英文标题】:varnish nginx port_in_redirect 8080 in url 【发布时间】:2015-05-05 01:54:36 【问题描述】:

RoundCube 和 phpMyAdmin 都有问题。我在 80 端口上运行 varnish,在 8080 上运行 nginx

当我转到 phpmyadmin.domain 并登录时,它会将我重定向到 phpmyadmin.domain:8080。

当我去 webmail.domain 并尝试登录时,它会不断重新加载登录页面,除非你去 webmail.domain:8080 并登录,然后它才会工作。

我试过了

    port_in_redirect off;

但它似乎仍然需要 8080。

phpmyadmin 的 Nginx 配置:

server 
    listen       8080;
    server_name  phpmyadmin.domain.name;

    port_in_redirect off; 

    access_log  /var/log/nginx/phpmyadmin.access.log;
    error_log  /var/log/nginx/phpmyadmin.error.log;

    root   /var/www/phpmyadmin.domain.name/;
    index  index.php index.html index.htm;
    try_files $uri $uri/ /index.php?$args;
    error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ 
        fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht 
        deny  all;
    

网络邮件的 Nginx 配置:

server 
    listen      8080;
    server_name webmail.domain.name;
    root        /usr/share/roundcubemail;

    port_in_redirect off;

    # Logs
    access_log  /var/log/roundcubemail/access.log;
    error_log   /var/log/roundcubemail/error.log;

    # Default location settings
    location / 
        index   index.php;
        try_files $uri $uri/ /index.php?$args;
    

    # Redirect server error pages to the static page /50x.html
    error_page 500 502 503 504 /50x.html;
        location = /50x.html 
        root /var/www/html;
    
    #error_page  404              /404.html;

    # Pass the PHP scripts to FastCGI server (locally with unix: param to avoid network overhead)
    location ~ \.php$ 
        # Prevent Zero-day exploit
        try_files $uri =404;

    fastcgi_split_path_info ^(.+\.php)(/.+)$;
        #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

        fastcgi_pass    unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index   index.php;
        fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include         fastcgi_params;
    

    # Deny access to .htaccess files, if Apache's document root
    location ~ /\.ht 
        deny  all;
    

    # Exclude favicon from the logs to avoid bloating when it's not available
    location /favicon.ico 
        log_not_found   off;
        access_log      off;
    

【问题讨论】:

你的nginx监听8080端口,所以任何监听80端口的都和nginx无关,nginx也和它无关。 @AlexeyTen 我明白这一点,但其他一切似乎都可以通过,而不需要在 URL 中显示 8080 端口,那么为什么 RoundCube 和 phpMyAdmin 有什么不同? 可能是 php 发送此重定向。检查 fastcgi_params 文件中的内容。应该有类似 server_port 的东西。尝试将其替换为 80 【参考方案1】:

正如上面提到的 AlexeyTen,php 服务器端口是我更改的 /etc/nginx/fastcgi_params 中的问题:

fastcgi_param SERVER_PORT $server_port;

到:

#fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_PORT 80;

它解决了我的问题!

【讨论】:

以上是关于清漆 nginx port_in_redirect 8080 在 url的主要内容,如果未能解决你的问题,请参考以下文章

关于 nGinx 和 PhpMyAdmin 重定向问题的清漆

如何合并这两个清漆后端?

清漆 503 服务不可用

wget --mirror 不创建清漆缓存

在 github 操作中安装清漆

什么是清漆中的管道模式和传递模式