Home >Operation and Maintenance >Nginx >How to build a static site

How to build a static site

王林
王林forward
2020-07-02 17:39:364132browse

How to build a static site

Build a static site

(Recommended tutorial: nginx tutorial)

The configuration is as follows:

# 虚拟主机server块
server {
    # 端口
    listen   8080;
    # 匹配请求中的host值
    server_name  localhost;
    
    # 监听请求路径
    location / {
        # 查找目录
        root /source;
        # 默认查找
        index index.html index.htm;
    }
}

Related fields

  • server Configure the relevant parameters of the virtual host. There can be multiple

  • server_name. Find the corresponding virtual host through the host value in the request. Host configuration

  • location Configure request routing and handle related page situations

  • root Path to find resources

After the configuration is completed, execute the nginx -t command to check if there are any errors. If the following prompt appears, it means success.

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

Then execute the nginx -s reload command to update the Nginx configuration file

At this time, open the browser and enter localhost:8080 You should be able to see it Your page

  • nginx -t Check the configuration file for syntax errors

  • nginx -s reload Send a signal to the main process and reload Configuration file

  • nginx -s stop Quick shutdown

  • nginx -s quit Wait for the worker process to be processed and then shut down

The above is the detailed content of How to build a static site. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:juejin.im. If there is any infringement, please contact admin@php.cn delete