How to publish static resources in nginx

How to publish static resources in nginx

step

  • Place the prepared static resource files in the specified folder
  • Change the nginx configuration file: nginx.conf
  • Start the nginx service: start nginx (be sure to switch to the nginx directory)
  • Check whether the release is successful in the browser

Practical operation

Put the published static web pages into the specified folder:

insert image description here

Change the nginx configuration file:

insert image description here

The nginx.conf configuration content is as follows:

#user nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
  worker_connections 1024;
}

http {
   gzip on;

  #Static file server {
    listen 8080;
    server_name localhost;

    location / {
      root D:/resources/statichtmls;
    }
  }

  #html file server {
    listen 8080;
    server_name 127.0.0.1 localhost;

    location / {
      root D:/resources/statichtmls;
      index index.html index.htm; 
    }
  }
}

Start nginx:

insert image description here

Check whether the release is successful

insert image description here

If it fails, please check the port number or other configurations, and whether the static file is correct.

Shutdown nginx

After the test is completed, if you do not use it, remember to close nginx

insert image description here

The next time I enter the system, I cannot log in, which means nginx is closed.

insert image description here

This is the end of this article about how to publish static resources with nginx. For more information about how to publish static resources with nginx, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use nginx to access local static resources on Linux server
  • Detailed explanation of solving the problem of cross-domain access of nginx/apache static resources
  • Detailed explanation of Nginx + Tomcat to separate requests for dynamic data and static resources
  • Detailed explanation of simple configuration of nginx static resource server
  • Nginx implements reverse proxy example of static resources
  • Use nginx-http-concat module to merge static resource files in nginx

<<:  WeChat applet development form validation WxValidate usage

>>:  4 ways to avoid duplicate insertion of data in Mysql

Recommend

Kill a bunch of MySQL databases with just a shell script like this (recommended)

I was woken up by a phone call early in the morni...

A brief analysis of CSS :is() and :where() coming to browsers soon

Preview versions of Safari (Technology Preview 10...

MySQL 5.6 installation steps with pictures and text

MySQL is an open source small relational database...

How to quickly delete all tables in MySQL without deleting the database

This article uses an example to describe how to q...

React internationalization react-i18next detailed explanation

Introduction react-i18next is a powerful internat...

Tutorial on migrating mysql from phpstudy to Linux

Project Purpose Migrate the data in MySQL 5.5.53 ...

How to achieve the maximum number of connections in mysql

Table of contents What is the reason for the sudd...

Docker installation tutorial in Linux environment

1. Installation environment Docker supports the f...

How to optimize logic judgment code in JavaScript

Preface The logical judgment statements we use in...

Detailed explanation of loop usage in javascript examples

I was bored and sorted out some simple exercises ...

Sample code of uniapp vue and nvue carousel components

The vue part is as follows: <template> <...

CSS selects the first child element under the parent element (:first-child)

Preface I recently used :first-child in a project...