zoukankan      html  css  js  c++  java
  • 在mac上搭建PHP开发环境

    首先安装homebrew:
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    安装 nginx-1.10.2_1
    • <!-- lang: shell -->
    • brew search nginx
    • brew install nginx

     配置:

    • <!-- lang: shell -->
    • cd /usr/local/etc/nginx/
    • mkdir conf.d
    • vim nginx.conf
    • vim ./conf.d/default.conf
    • nginx.conf内容,
      <!-- lang: shell -->
      worker_processes 1; 
       
      error_log    /usr/local/var/log/nginx/error.log warn;
       
      pid    /usr/local/var/run/nginx.pid;
       
      events {
        worker_connections 256;
      }
       
      http {
        include    mime.types;
        default_type application/octet-stream;
       
        log_format main '$remote_addr - $remote_user [$time_local] "$request" '
                 '$status $body_bytes_sent "$http_referer" '
                 '"$http_user_agent" "$http_x_forwarded_for"';
       
        access_log   /usr/local/var/log/nginx/access.log main;
        port_in_redirect off;
        sendfile    on; 
        keepalive_timeout 65; 
       
        include /usr/local/etc/nginx/conf.d/*.conf;
      }
      default.conf文件内容,
      <!-- lang: shell -->
      server {
        listen    8080;
        server_name localhost;
       
        root /Users/user_name/nginx_sites/; # 该项要修改为你准备存放相关网页的路径
       
        location / { 
          index index.php;
          autoindex on; 
        }  
       
        #proxy the php scripts to php-fpm 
        location ~ .php$ {
          include /usr/local/etc/nginx/fastcgi.conf;
          fastcgi_intercept_errors on; 
          fastcgi_pass  127.0.0.1:9000; 
        }  
       
      }
      

        

  • 相关阅读:
    SQL 测试
    atoi的实现
    python基础3 ---python数据类型二
    python基础2 ---python数据类型一
    python基础1 ---python简介
    shell编程3 ---流程控制语句
    shell编程2 ---条件判断语句
    oldboyshell编程扩展内容
    nfs服务器
    shell编程1
  • 原文地址:https://www.cnblogs.com/ldphoebe/p/6047961.html
Copyright © 2011-2022 走看看