- NGINX Cookbook
- Tim Butler
- 201字
- 2021-07-03 00:04:23
How it works...
For the most part, the configuration is the same as the static website configuration in Chapter 1, Let's Get Started. For the root URL call, we have a new try_files directive, which will attempt to load the files in the order specified, but will fall back to the last parameter if they all fail.
For this WordPress example, it means that any static files will be served if they exist on the system, then fall back to /index.php?args if this fails.
The args rewrite allows the permalinks of the site to be in a much more human form. For example, if you have a working WordPress installation, you can see links such as the one shown in the following screenshot:

Lastly, we process all PHP files via the FastCGI interface to PHP-FPM. In the preceding example, we're referencing the Ubuntu/Debian standard; if you're running CentOS/RHEL, then the path will be /var/run/php-fpm.sock.
NGINX is simply proxying the connection to the PHP-FPM instance, rather than being part of NGINX itself. This separation allows for greater resource control, especially since the number of incoming requests to the web server doesn't necessarily match the number of PHP requests for a typical website.
- Data Visualization with D3 4.x Cookbook(Second Edition)
- UI圖標創意設計
- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Mastering Rust
- concrete5 Cookbook
- Python面向對象編程:構建游戲和GUI
- Mastering ServiceNow(Second Edition)
- The DevOps 2.5 Toolkit
- Visual Foxpro 9.0數據庫程序設計教程
- iPhone應用開發從入門到精通
- Node.js開發指南
- 奔跑吧 Linux內核
- Android編程權威指南(第4版)
- Android技術內幕(系統卷)
- Swift High Performance