端口多分区

server {

        listen       8000;

        server_name  localhost;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {

            root   html;

            index  index.html index.htm index.php;

        }


        #error_page  404              /404.html;


        # redirect server error pages to the static page /50x.html

        #

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }


        # proxy the PHP scripts to Apache listening on 127.0.0.1:80

        #

        location ~ .*\.(php|php5)?$

                {

                        try_files $uri =404;

                        fastcgi_pass  127.0.0.1:9000;

                        fastcgi_index index.php;

                        include fastcgi.conf;

                 }


        }


       server {                                                                                                                                                                              

        listen       8002;                                                                                                                                                                   

        server_name  localhost;                                                                                                                                                              

                                                                                                                                                                                             

        location / {                                                                                                                                                                         

            root   html;                                                                                                                                                                     

            index  index.html index.htm index.php;                                                                                                                                           

        }                                                                                                                                                                                    

                                                                                                                                                                                             

       error_page   500 502 503 504  /50x.html;                                                                                                                                              

        location = /50x.html {                                                                                                                                                               

            root   html;                                                                                                                                                                     

        }                                                                                                                                                                                    

                                                                                                                                                                                             

       location ~ .*\.(php|php5)?$                                                                                                                                                           

                {                                                                                                                                                                            

                        try_files $uri =404;                                                                                                                                                 

                        fastcgi_pass  127.0.0.1:9000;                                                                                                                                        

                        fastcgi_index index.php;                                                                                                                                             

                        include fastcgi.conf;                                                                                                                                                

                 }                                                                                                                                                                           

                                                                                                                                                                                             

       }                                                                                                                                                                                     

                                                                                                                                                                                             

                                                                                                                                                                                             

       server {                                                                                                                                                                              

        listen       8003;                                                                                                                                                                   

        server_name  localhost;                                                                                                                                                              

                                                                                                                                                                                             

        location / {                                                                                                                                                                         

            root   html;                                                                                                                                                                     

            index  index.html index.htm index.php;

error_page   500 502 503 504  /50x.html;                                                                                                                                              

        location = /50x.html {                                                                                                                                                               

            root   html;                                                                                                                                                                     

        }                                                                                                                                                                                    

                                                                                                                                                                                             

                                                                                                                                                                                             

       location ~ .*\.(php|php5)?$                                                                                                                                                           

                {                                                                                                                                                                            

                        try_files $uri =404;                                                                                                                                                 

                        fastcgi_pass  127.0.0.1:9000;                                                                                                                                        

                        fastcgi_index index.php;                                                                                                                                             

                        include fastcgi.conf;                                                                                                                                                

                 }                           

 

下几行

下面还有一个中括号

 最主要的还是小心括号问题。

你可能感兴趣的:(server,error,localhost,listen)