nginx配置域名

/etc/nginx/nginx.conf

server {
       listen    80;
       server_name www.starrsea.com;
       root         /usr/share/nginx/html/www;
       
       include /etc/nginx/default.d/*.conf;

        location / {
           index index.php index.html index.htm;
        }

        error_page 404 /404.html;
        location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
        location ~ .php$ {
            try_files $uri =404;
            root /usr/share/nginx/html/www;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi.conf;
        }
    }

猜你喜欢

转载自blog.csdn.net/Nep_tune/article/details/88797427