How to build a static site

王林
Release: 2020-07-02 17:39:36
forward
4049 people have browsed it

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;
    }
}
Copy after login

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
Copy after login

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!

Related labels:
source:juejin.im
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!