1. Introduction to NginxNginx is a reverse proxy server. First, let’s take a look at what a proxy server is. A proxy server generally refers to a machine within a local area network that sends requests to a server on the Internet through a proxy service. A proxy server generally acts on the client. For example, GoAgent, FQ artifact. A complete proxy request process is as follows: the client first establishes a connection with the proxy server, and then requests to establish a connection with the target server or obtain the specified resources of the target server according to the proxy protocol used by the proxy server. A web proxy server is an intermediary entity in a network. The proxy sits between the web client and the web server, acting as a "middleman". A proxy server is another server between the client and the Web server. With it, the browser does not go directly to the Web server to retrieve the web page, but sends a request to the proxy server. The signal will first be sent to the proxy server, which will retrieve the information the browser needs and transmit it to your browser. A forward proxy is a server located between the client and the original server. In order to obtain content from the original server, the client sends a request to the proxy and specifies the target (the original server). The proxy then forwards the request to the original server and returns the obtained content to the client. The client must perform some special settings to use a forward proxy. Reverse proxy server: Receives client requests on the server side, distributes the requests to specific servers for processing, and then feeds back the server's response results to the client. Nginx is one of the reverse proxy server software. The forward proxy client must set up a forward proxy server. Of course, the prerequisite is to know the IP address of the forward proxy server and the port of the proxy program. 2. Image Server ConstructionAfter installing nginx locally, we can access it through the port. The default port is port 80. Since it conflicts with the local port 80, I changed it to 8089. At this point we have successfully started nginx, and then under the nginx directory, add the image path we need to configure, as follows: #Add image code location ~ .*\.(gif|jpg|jpeg|png)$ { expires 24h; root H:/radar/;#Specify the image storage path access_log H:/radar/log;#Image path proxy_store on; proxy_store_access user:rw group:rw all:rw; proxy_temp_path H:/radar/;#image path proxy_redirect off; proxy_set_header Host 127.0.0.1; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 10m; client_body_buffer_size 1280k; proxy_connect_timeout 900; proxy_send_timeout 900; proxy_read_timeout 900; proxy_buffer_size 40k; proxy_buffers 40 320k; proxy_busy_buffers_size 640k; proxy_temp_file_write_size 640k; if ( !-e $request_filename) { proxy_pass http://127.0.0.1:8089; #Proxy access address} } According to the above configuration, find the path we need. Then restart the service, and you can see the pictures we configured. As shown in the figure below At this point a simple nginx image server has been built. This is the end of this article about how to configure a local image server with Nginx. For more information about Nginx local image server, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: The difference between z-index: 0 and z-index: auto in CSS
>>: About the pitfall record of Vue3 transition animation
Table of contents Preface Dynamic SQL 1. Take a l...
Web page design related questions, see if you can...
Table of contents 1. List interface display examp...
Preface: As far as I know, currently CSS can only...
We often use click events in the a tag: 1. a href=...
1. Common usage: (1) Use with % % represents a wi...
will-change tells the browser what changes will h...
I installed MySQL smoothly in Ubuntu 16.04 before...
Table of contents Dockerfile pom.xml Jenkins Conf...
This article introduces the method of implementin...
Without further ado, let me give you the code. Th...
summary Docker-compose can easily combine multipl...
Recently, I have used React Hooks in combination ...
In a recent project, I wanted to align text verti...
Table of contents 1. MySQL data backup 1.1, mysql...