溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么使用Nginx對(duì)Laravel進(jìn)行負(fù)載

發(fā)布時(shí)間:2020-12-19 11:09:37 來(lái)源:億速云 閱讀:193 作者:小新 欄目:編程語(yǔ)言

小編給大家分享一下怎么使用Nginx對(duì)Laravel進(jìn)行負(fù)載,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

項(xiàng)目環(huán)境php7.2, nginx , Laravel,開(kāi)發(fā)的微信公眾號(hào)應(yīng)用 。目前訪問(wèn)量的上升,單臺(tái)服務(wù)器不能滿足需求,于是用nginx做了負(fù)載。

以下是一種可行性方案,目前正在使用。

session共享的問(wèn)題參考:Laravel使用Redis共享Session(代碼詳解)

有兩臺(tái)web服務(wù)器 A:10.0.0.2 , B:10.0.0.3,系統(tǒng)的域名為 www.c.com,使用A使用為反向代理服務(wù)器

A服務(wù)器的nginx配置

server {
listen 81;
server_name _;
index index.html index.htm index.php;
access_log /data/wwwroot/wwwlogs/www_nginx.log combined;
root /data/wwwroot/www/public;
location / {
    try_files $uri $uri/ /index.php?$query_string;
}
location ~ .*\.(php|php5)?$ {
   fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
    expires 30d;
    access_log off;
    }
location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
    }
}

B服務(wù)器nginx設(shè)置

server {
listen 80;
server_name -;
index index.html index.htm index.php;
access_log /data/wwwlogs/www_nginx.log combined;
root /data/wwwroot/www/public;
location / {
    try_files $uri $uri/ /index.php?$query_string;
}
location ~ .*\.(php|php5)?$ {
 
   fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
    expires 30d;
    access_log off;
    }
location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
    }
}

A 服務(wù)器上的反向代理服務(wù)器設(shè)置

upstream backend{
    ip_hash;
    server 127.0.0.1:81;
    server 10.0.0.3;
}
server {
listen 80;
server_name www.c.com;
index index.html index.htm index.php;
access_log /data/wwwroot/wwwlogs/www_nginx.log combined;
root /data/wwwroot/www/public;
location / {
    proxy_pass http://backend;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~ .*\.(php|php5)?$ {
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
    expires 30d;
    access_log off;
    }
location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
    }
}

如果是做微信公眾號(hào),使用了easywechat,需要把backend 代換為你的www.c.com 這樣才能支持微信授權(quán)。

微信的access_token需要使用redis共享,easywechat默認(rèn)使用laravel 的緩存,所以需要把.env的緩存改成使用redis

CACHE_DRIVER=redis

Laravel 中使用 Request::getClientIp()獲取到的IP不是真實(shí)的IP,需要修改app/Providers/AppServiceProvider.php,設(shè)置信任代理服務(wù)器的IP(127.0.0.1,10.0.0.2),就可以使用Request::getClientIp()獲真實(shí)IP了。

  public function boot()
    {
        \Request::setTrustedProxies(['127.0.0.1','10.0.0.2']);
    }

以上是“怎么使用Nginx對(duì)Laravel進(jìn)行負(fù)載”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI