Nginx 之在windows下的安裝與啓動

1、下載php

Nginx運用場景以下:html

一、http服務器。Nginx是一個http服務能夠獨立提供http服務。能夠作網頁靜態服務器。 
二、虛擬主機。能夠實如今一臺服務器虛擬出多個網站。例如我的網站使用的虛擬主機。 
三、反向代理,負載均衡。當網站的訪問量達到必定程度後,單臺服務器不能知足用戶的請求時,須要用多臺服務器集羣可使用nginx作反向代理。而且多臺服務器能夠平均分擔負載,不會由於某臺服務器負載高宕機而某臺服務器閒置的狀況。
nginx

Nginx下載:http://nginx.org/en/download.htmlwindows

經常使用命令服務器

nginx -t   驗證(nginx.conf)配置文件是否有語法錯誤
nginx -V   查看Nginx的版本號
start nginx   啓動Nginx (windows下start nginx)
nginx -c /usr/local/nginx/conf/nginx.conf   啓動nginx
nginx -s stop   快速中止或關閉Nginx
nginx -s quit   正常中止或關閉Nginx
nginx -s reload   配置文件修改重裝載命令
nginx -h   查看幫助信息
nginx -s reopen   打開日誌文件負載均衡

 

2、Nginx配置socket

server {
        listen       8080;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        root   "G:/phpstudy/nginx/html";
        location / {
           index  index.html index.htm index.php l.php;
           autoindex  on;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        
        location ~ \.php(.*)$  {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
    }

3、運行fastcgi網站

4、運行Nginxui

訪問結果以下:spa

 5、配置中遇到的問題

一、question:Cannot bind/listen socket - [0] No error.    Couldn‘t create FastCGI listen socket on port 127.0.0.1:9000

解決:fastcgi中9000端口被phpstudy佔用,因此使用9001端口

相關文章
相關標籤/搜索