欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Nginx 配置笔记

程序员文章站 2022-04-09 12:12:00
...
引子

本篇记录学习 nginx 的点滴

主要配置

与 PHP 整合

vim nginx.conf

location / {
    root   /var/www/html;
    index  index.html index.php;
    # ThinkPHP hide index.php
    try_files $uri$uri/ /index.php?s=$uri&$args;
}

location ~ \.php {
    root /var/www/html;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    include fastcgi_params;
    set$path_info"";
    set$real_script_name$fastcgi_script_name;
    if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
    set$real_script_name$1;
    set$path_info$2;
    }
    fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
    fastcgi_param SCRIPT_NAME $real_script_name;
    fastcgi_param PATH_INFO $path_info;
}
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了 Nginx 配置笔记,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。