Home> PHP Framework> Laravel> body text

How to load Laravel using Nginx?

藏色散人
Release: 2020-01-30 19:41:45
forward
2215 people have browsed it

How to load Laravel using Nginx?

Project environment php7.2, nginx, Laravel, WeChat public account application developed. With the current increase in visits, a single server cannot meet the demand, so nginx is used to load it.

The following is a feasible solution that is currently in use.

Session sharing problem reference:Laravel uses Redis to share Session (detailed code explanation)

There are two web serversA:10.0 .0.2,B:10.0.0.3, the system domain name iswww.c.com, use A as the reverse proxy server

A server nginx configuration

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; } }
Copy after login

B server nginx settings

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; } }
Copy after login

A reverse proxy server settings on the server

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; } }
Copy after login

If you are making a WeChat public account and using easywechat, you need to replace the backend with your www.c.com to support WeChat authorization.

WeChat’s access_token needs to be shared using redis. Easywechat uses laravel’s cache by default, so you need to change the .env cache to use redis

CACHE_DRIVER=redis

UseRequest::getClientIp()in Laravel. The IP obtained is not the real IP. You need to modifyapp/Providers/AppServiceProvider.phpto set the IP of the trusted proxy server ( 127.0.0.1, 10.0.0.2), you can use Request::getClientIp() to get the real IP.

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

For more technical articles related to the laravel framework, please visit thelaravel tutorialcolumn!

The above is the detailed content of How to load Laravel using Nginx?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!