Nginx 安装说明(Nginx Installation Notes)

Nginx 是一个免费的,开源的高性能的HTTP服务器和反向代理服务器,同样也可作为IMAP/POP3代理服务器。不同于传统的服务器,Nginx 不依赖线程去处理请求。相反,它使用一个高扩展的事件驱动(异步)架构。 这种架构对系统资源的消耗很低,但更重要的是,承载了非常高的负载,并发能力很强。

PHP-FPM (FastCGI 进程管理器)通常用来允许 Nginx 来处理PHP文件。到了如今,PHP-FPM 已经捆绑在所有的PHP发行版中。Phalcon + Nginx + PHP-FPM 提供了一套强大的工具集,为你的PHP应用提供最强大性能。

Niginx 下配置 Phalcon(Configuring Nginx for Phalcon)

下面是nginx可以合Phalcon配合使用的大概配置:

基础配置(Basic configuration)

使用 $_GET[‘_url’] 作为 URLs的源:

  1. server {
  2. listen 80;
  3. server_name localhost.dev;
  4. root /var/www/phalcon/public;
  5. index index.php index.html index.htm;
  6. charset utf-8;
  7. location / {
  8. try_files $uri $uri/ /index.php?_url=$uri&$args;
  9. }
  10. location ~ \.php {
  11. fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
  12. fastcgi_index /index.php;
  13. include fastcgi_params;
  14. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  15. fastcgi_param PATH_INFO $fastcgi_path_info;
  16. fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
  17. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  18. }
  19. location ~ /\.ht {
  20. deny all;
  21. }
  22. }

使用 $_SERVER[‘REQUEST_URI’] 作为 URLs的源:

  1. server {
  2. listen 80;
  3. server_name localhost.dev;
  4. root /var/www/phalcon/public;
  5. index index.php index.html index.htm;
  6. charset utf-8;
  7. location / {
  8. try_files $uri $uri/ /index.php;
  9. }
  10. location ~ \.php$ {
  11. try_files $uri =404;
  12. fastcgi_pass 127.0.0.1:9000;
  13. fastcgi_index /index.php;
  14. include fastcgi_params;
  15. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  16. fastcgi_param PATH_INFO $fastcgi_path_info;
  17. fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
  18. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  19. }
  20. location ~ /\.ht {
  21. deny all;
  22. }
  23. }