sgenmi/yaf-help-doc

该包最新版本(v0.0.1)的许可证信息不可用。

Yaf帮助文档

v0.0.1 2020-06-17 11:16 UTC

This package is auto-updated.

Last update: 2024-09-18 16:12:25 UTC


README

  • 安装Yaf
    wget http://pecl.php.net/get/yaf-3.3.4.tgz
    tar zxvf yaf-3.3.2.tgz
    cd yaf-3.3.4
    phpize   [/path/to/phpize]
    ./configure --with-php-config=php-config  [/path/to/php-config]
    make && sudo make install
  • 编辑php.ini文件
    • 将以下代码添加到php.ini文件中
    • 启用use_namespace
    extension=yaf.so
    yaf.use_namespace=1
    yaf.name_suffix=0
    yaf.name_separator=\;
  • Nginx配置
server {
  listen 8080;
  server_name xx.com ;
  access_log off;
  index index.html index.htm index.php;
  # Project path
  
  root /var/www/xxxx/public;

  #error_page 404 /404.html;
  #error_page 502 /502.html;

  location / {
      try_files $uri $uri/ /index.php?$args;
  }

  location ~ [^/]\.php(/|$) {
    #fastcgi_pass remote_php_ip:9000;
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
  }
  
  location ~ /\.ht {
    deny all;
  }
  location ~ /\.git {
      deny all;
  }
  location ~ /\.md {
        deny all;
    }
}