windows 下nginx 虛擬機器主機搭建

來源:互聯網
上載者:User

標籤:style   http   color   os   strong   檔案   io   html   

需要在 nginx.conf裡面引入剛才配置的那個檔案 第一步 加東西http的節點裡面加上一定要注意的是:必須以   ;  結尾include D:/phpen/nginx-1.3.6/conf/vhost/www.light.com.conf;或者include D:/phpen/nginx-1.3.6/conf/vhost/*.conf; 第二步  寫設定檔  下面的 這兩種方法我都測試過的哦
  • 可以為每一個單獨建立一個檔案      這個是便於管理
  • 也可以把所有的都寫入同一個檔案    這個是便於寫入,呵呵
 單獨建立一個檔案在conf的vhost下面建立www.light.com.conf 裡面的內容是
每一個都是以 ;結尾的server {listen       80;server_name www.light.com;index index.html index.htm index.php;root  D:/phpen/apache/htdocs/light;#需要為每個單獨的網站配置一個解析php的東西哦
        #下面的location這個名字不能變哦 location ~ \.php$ {            root           D:/phpen/apache/htdocs/light;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            include        fastcgi_params;        }}
第三步 重啟nginx
 
需要注意的是,如果沒有 ;啟動不了,
如果啟動不了,那就是哪裡配置的錯誤了,可以檢查一下錯誤哦
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.