zoukankan      html  css  js  c++  java
  • mac 下 nginx的安装

    1. 使用 brew 安装 nginx 

      brew install nginx 

    2.打开ngnix 

      sudo nginx 

      -- 重启ngnix

      ngnix -s reload

    3. 关于php  ,默认使用 mac 上的php ,先配置 ,再开启 php-fpm

      sudo cp /private/etc/php-fpm.conf.default /private/etc/php-fpm.conf vim /private/etc/php-fpm.conf

      sudo  php-fpm

    4.找到 /usr/local/etc/nginx/nginx.conf , 配置虚拟主机(###|$$$ 根据主机而定)

    server {

            listen       80;

            server_name  www.####.com;

            root /Users/#####/$$$$$;

            index  index.html index.htm index.php;

     

            location / {

                root   html;

                index  index.html index.htm;

                if (!-e $request_filename) {

                    #rewrite ^/(.*)$ /index.php?$1 last;

                    rewrite "^/(.*)$" /index.php last; #这一条很重要

                }

                    rewrite ^/$/index.php last;

            }

                location ~ .*.php$

            {

                include fastcgi.conf;

                fastcgi_pass  127.0.0.1:9000;

                fastcgi_index index.php;

                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

                fastcgi_param   PATH_INFO      $fastcgi_path_info;

                include fastcgi_params;

                expires off;

            }

        }

  • 相关阅读:
    第一册:lesson thirty five。
    第一册:lesson thirty three。
    第一册:lesson thirty one。
    C#比较两个对象是否为同一个对象。
    第一册:lesson twentynine..
    第一册:lesson twenty seven。
    C#函数返回值。
    说明
    推荐一些python Beautiful Soup学习网址
    祝各位节日快乐!20151111
  • 原文地址:https://www.cnblogs.com/zeopean/p/5244731.html
Copyright © 2011-2022 走看看