Nginx 与 haproxy 一起不指向根 index.php 文件

Nginx together with haproxy does not point the root index.php file

我有 1 个本地 haproxy 服务器 (10.10.1.18) 用于负载平衡 2 个 nginx 本地网络服务器 (web1=10.10。 1.21,web2=10.10.1.22)。

我可以像那样成功地将 Web 服务器的本地 ip 访问到 index.php 文件 http://10.10.1.21/ and http://10.10.1.22/

但是,当我指向 haproxy http://10.10.1.18/, it only brings the index.html file instead of index.php file. We also have a domainname that points the public ip to the haproxy but http://example.uni.edu 的本地 ip 时,再次带来 index.html 文件而不是 index.php 文件

所以我不认为这是关于 public vs 本地 ip 而是关于 haproxy 或 nginx 配置

/etc/haproxy/haproxy.cfg


    #---------------------------------------------------------------------
    # Example configuration for a possible web application.  See the
    # full configuration options online.
    #
    #   http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
    #
    #---------------------------------------------------------------------

    #---------------------------------------------------------------------
    # Global settings
    #---------------------------------------------------------------------
    global
        # to have these messages end up in /var/log/haproxy.log you will
        # need to:
        #
        # 1) configure syslog to accept network log events.  This is done
        #    by adding the '-r' option to the SYSLOGD_OPTIONS in
        #    /etc/sysconfig/syslog
        #
        # 2) configure local2 events to go to the /var/log/haproxy.log
        #   file. A line like the following can be added to
        #   /etc/sysconfig/syslog
        #
        #    local2.*                       /var/log/haproxy.log
        #
        log         127.0.0.1 local2

        chroot      /var/lib/haproxy
        pidfile     /var/run/haproxy.pid
        maxconn     10000
        user        haproxy
        group       haproxy
        daemon

        # turn on stats unix socket
        stats socket /var/lib/haproxy/stats

    #---------------------------------------------------------------------
    # common defaults that all the 'listen' and 'backend' sections will
    #use if not designated in their block
    #---------------------------------------------------------------------
    defaults
        mode                    http
        log                     global
        option                  httplog
        option                  dontlognull
        option http-server-close
        option forwardfor       except 127.0.0.0/8
        option                  redispatch
        retries                 3
        timeout http-request    10s
        timeout queue           1m
        timeout connect         10s
        timeout client          1m
        timeout server          1m
        timeout http-keep-alive 10s
        timeout check           10s
        maxconn                 10000


    #---------------------------------------------------------------------
    #HAProxy statistics backend
    #---------------------------------------------------------------------
    listen haproxy3-monitoring *:80
      mode    http
      option forwardfor except 127.0.0.1
      option httpclose
      stats   enable
      stats   show-legends
      stats   refresh           5s
      stats   uri               /stats
      stats   realm             Haproxy\ Statistics
      stats   auth              username:password
      stats   admin             if TRUE

    #---------------------------------------------------------------------
    # main frontend which proxys to the backends
    #---------------------------------------------------------------------
    frontend main
            bind *:80
            default_backend webapp-main

    # round robin balancing between the various backends
    #---------------------------------------------------------------------
    backend webapp-main
            balance roundrobin
            option httpchk HEAD / HTTP/1.1\r\nHost:\ example.uni.edu
            server  web1 10.10.1.21:80 check
            server  web2 10.10.1.22:80 check

web1 nginx - /etc/nginx/conf.d/default.conf


    server {
        listen       80;
        server_name  10.10.1.21;


        # note that these lines are originally from the "location /" block
        root   /usr/share/nginx/html;
        index index.php index.html index.htm;

        location / {
            try_files $uri $uri/  =404;


        }
        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
            root /usr/share/nginx/html;
        }


        location ~ [^/]\.php(/|$) {
            fastcgi_split_path_info  ^(.+\.php)(/.+)$;
            fastcgi_index   index.php;
            fastcgi_pass    unix:/var/run/php-fpm/php-fpm.sock;
            include         fastcgi_params;
            fastcgi_param   PATH_INFO       $fastcgi_path_info;
            fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
        }   

        location /dataroot/ {
            internal;
            alias /var/moodledata/; # ensure the path ends with /
        }

        location /cachedir/ {
            internal;
            alias /var/moodledata/cache/; # ensure the path ends with /
        }


        location /localcachedir/ {
            internal;
            alias /var/moodledata/localcache/; # ensure the path ends with /
        }

        location /tempdir/ {
            internal;
            alias /var/moodledata/temp/; # ensure the path ends with /
        }

        location /filedir/ {
            internal;
            alias /var/moodledata/filedir/; # ensure the path ends with /
        }

    }

web2 具有与 web1 相同的配置以及其自己的本地 ip。

当我直接指向 index.php http://10.10.1.18/index.php 时,它会下载 index.php 文件并给出

503 Service Unavailable

有人遇到过类似的问题吗?

终于解决了,请按以下步骤操作:

  • 不要使用 /etc/nginx/conf.d/ 下的配置文件 只使用 1 个配置文件 /etc/nginx/nginx.conf 像这样



     # For more information on configuration, see:
        #   * Official English Documentation: http://nginx.org/en/docs/
        #   * Official Russian Documentation: http://nginx.org/ru/docs/

        user nginx;
        worker_processes auto;
        error_log /var/log/nginx/error.log;
        pid /run/nginx.pid;

        events {
            worker_connections 8192;
        }

        http {
            log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                              '$status $body_bytes_sent "$http_referer" '
                              '"$http_user_agent" "$http_x_forwarded_for"';

            access_log  /var/log/nginx/access.log  main;
            tcp_nopush     on;
            sendfile            on;
            keepalive_timeout   65;
            types_hash_max_size 2048;

            client_body_buffer_size 10K;
            client_header_buffer_size 1k;
            client_max_body_size 512m;
            large_client_header_buffers 2 1k;

            client_body_timeout 1200;
            client_header_timeout 1200;
            send_timeout 100;

            include             /etc/nginx/mime.types;
            default_type        application/octet-stream;

        server {
            listen       80;
            server_name  example.uni.edu;

            # note that these lines are originally from the "location /" block
            root   /usr/share/nginx/html;
            index index.php index.html index.htm;

            location / {
                root   /usr/share/nginx/html;
                try_files $uri $uri/ =404;
                index index.php;
            }
            error_page 404 /404.html;
            error_page 500 502 503 504 /50x.html;
            location = /50x.html {
                root /usr/share/nginx/html;
            }

            location ~ [^/]\.php(/|$) {
                root   /usr/share/nginx/html;
                fastcgi_split_path_info  ^(.+\.php)(/.+)$;
                fastcgi_index   index.php;
                fastcgi_pass    unix:/var/run/php-fpm/php-fpm.sock;
                #fastcgi_pass 127.0.0.1:9000;
                include         fastcgi_params;
                fastcgi_param   PATH_INFO       $fastcgi_path_info;
                fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
            }

            ###################### For Moodle Application ##################
            location /dataroot/ {
                internal;
                alias /var/moodledata/; # ensure the path ends with /
            }

            location /cachedir/ {
                internal;
                alias /var/moodledata/cache/; # ensure the path ends with /
            }


            location /localcachedir/ {
                internal;
                alias /var/moodledata/localcache/; # ensure the path ends with /
            }

            location /tempdir/ {
                internal;
                alias /var/moodledata/temp/; # ensure the path ends with /
            }

            location /filedir/ {
                internal;
                alias /var/moodledata/filedir/; # ensure the path ends with /
            }
            ###################### For Moodle Application ##################
        }
       }

  • 确保您使用有效的 haproxy 配置以及 2 个不同的端口,80 用于后端,8080 用于监控统计信息

    #---------------------------------------------------------------------
    # Example configuration for a possible web application.  See the
    # full configuration options online.
    #
    #   http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
    #
    #---------------------------------------------------------------------

    #---------------------------------------------------------------------
    # Global settings
    #---------------------------------------------------------------------
    global
        # to have these messages end up in /var/log/haproxy.log you will
        # need to:
        #
        # 1) configure syslog to accept network log events.  This is done
        #    by adding the '-r' option to the SYSLOGD_OPTIONS in
        #    /etc/sysconfig/syslog
        #
        # 2) configure local2 events to go to the /var/log/haproxy.log
        #   file. A line like the following can be added to
        #   /etc/sysconfig/syslog
        #
        #    local2.*                       /var/log/haproxy.log
        #
        log         127.0.0.1 local2

        chroot      /var/lib/haproxy
        pidfile     /var/run/haproxy.pid
        maxconn     10000
        user        haproxy
        group       haproxy
        daemon

        # turn on stats unix socket
        stats socket /var/lib/haproxy/stats

    #---------------------------------------------------------------------
    # common defaults that all the 'listen' and 'backend' sections will
    #use if not designated in their block
    #---------------------------------------------------------------------
    defaults
        mode                    http
        log                     global
        option                  httplog
        option                  dontlognull
        option http-server-close
        option forwardfor       except 127.0.0.0/8
        option                  redispatch
        retries                 3
        timeout http-request    10s
        timeout queue           1m
        timeout connect         10s
        timeout client          1m
        timeout server          1m
        timeout http-keep-alive 10s
        timeout check           10s
        maxconn                 10000


    #---------------------------------------------------------------------
    #HAProxy statistics backend
    #---------------------------------------------------------------------
    listen haproxy3-monitoring *:8080
      mode    http
      option forwardfor
      option httpclose
      stats   enable
      stats   show-legends
      stats   refresh           5s
      stats   uri               /stats
      stats   realm             Haproxy\ Statistics
      stats   auth              username:password
      stats   admin             if TRUE

    #---------------------------------------------------------------------
    # main frontend which proxys to the backends
    #---------------------------------------------------------------------
    frontend main
            bind *:80
            option http-server-close
            option forwardfor
            default_backend webapp-main

    # round robin balancing between the various backends
    #---------------------------------------------------------------------
    backend webapp-main
            balance source
            option httpchk HEAD / HTTP/1.1\r\nHost:\ example.uni.edu
            server  web1 10.10.1.21:80 check
            server  web2 10.10.1.22:80 check

您也可以浏览您的申请http://example.uni.edu

注意:请确保您 public ip 成功指向您的 haproxy 服务器!