当前位置:首页 > 服务器技术 > nginx

Nginx负载均衡与专用的php-fpm服务器

我用nginx php-fpm和mysql安装了服务器.
我有另一台服务器只安装了php-fpm,所以想用作负载平衡.
但是当我使用这个带有php-fpm的dedacted服务器作为负载均衡器时,我在打开页面时遇到错误:“拒绝访问”.

/etc/nginx/nginx.conf

user www-data;
worker_processes  3;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    server_names_hash_bucket_size 64;
    access_log  /var/log/nginx/access.log;

    sendfile        on;
    #tcp_nopush      on;

    keepalive_timeout   65;
    tcp_nodelay         on;

    #gzip                on;

    upstream php {
        server dedicatedserverip:9000;
    }

    include /etc/nginx/sites-enabled/*;
}

/etc/nginx/sites-enabled/site.org.conf

server {
    listen   81;
    server_name site.org www.site.org;
    access_log  /var/log/nginx/site.org.log;
    error_log   /var/log/nginx/site.org.log;
    root        /home/www/site.org;
    index       index.php; 

    location ~ .php${
        fastcgi_pass  php;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /home/www/$fastcgi_script_name;
    }
} 

为什么我收到此错误?当我只将fastcgi_pass更改为127.0.0.1:9000时 – 一切正常.

解决方法:

如果它是一个带有“拒绝访问”的空白页面,则由security.limit_extensions directive引起的已添加到php-fpm.

如果你没有在你的php-fpm配置中使用它,它默认为.php并防止所有其他文件类型被PHP解释器解析,在尝试这样做时产生“拒绝访问”.


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!