step
Practical operationPut the published static web pages into the specified folder: Change the nginx configuration file: 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: Check whether the release is successful If it fails, please check the port number or other configurations, and whether the static file is correct. Shutdown nginxAfter the test is completed, if you do not use it, remember to close nginx The next time I enter the system, I cannot log in, which means nginx is closed. 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:
|
<<: WeChat applet development form validation WxValidate usage
>>: 4 ways to avoid duplicate insertion of data in Mysql
This article uses the gearman+mysql method to imp...
Table of contents Multi-table join query Inner Jo...
Tab switching is also a common technology in proj...
Ubuntu install jdk: [link] Install Eclipse on Ubu...
1. Experimental description In the virtual machin...
cellspacing is the distance between cells in the t...
On a Windows server, if you want to back up datab...
Table of contents Preface What are asynchronous i...
1. Absolute path First of all, on the local compu...
1. Background 1.1 Problems A recent product testi...
Find the problem When retrieving the top SQL stat...
1. Make sure the network connection method is bri...
Table of contents introduce start Install ① Direc...
Sometimes, in order to facilitate the export and ...
Preface Recently, I have been helping clients con...