專案環境php7.2, nginx , Laravel,開發的微信公眾號應用 。目前訪問量的上升,單一伺服器無法滿足需求,於是用nginx做了負載。
以下是一種可行性方案,目前正在使用中。
session共享的問題參考:Laravel使用Redis共享Session(程式碼詳解)
有兩台web伺服器A:10.0 .0.2
, B:10.0.0.3
,系統的網域為www.c.com
,使用A使用為反向代理伺服器
#A伺服器的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伺服器nginx設定
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 伺服器上的反向代理伺服器設定
#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; } }
如果是做微信公眾號,使用了easywechat,需要把backend 代換為你的www.c.com 這樣才能支持微信授權。
微信的access_token需要使用redis共享,easywechat預設使用laravel 的緩存,所以需要把.env的快取改成使用redis
##CACHE_DRIVER=redis
Request::getClientIp()取得到的IP不是真實的IP,需要修改
app/Providers/AppServiceProvider.php,設定信任代理伺服器的IP( 127.0.0.1,10.0.0.2),就可以使用Request::getClientIp()取得真實IP了。
public function boot() { \Request::setTrustedProxies(['127.0.0.1','10.0.0.2']); }更多laravel框架相關技術文章,請造訪
laravel教學專欄!
以上是如何使用Nginx對Laravel進行負載?的詳細內容。更多資訊請關注PHP中文網其他相關文章!