How to configure static file server for nginx
Today, I would like to share with you the relevant knowledge about how to configure the static file server in nginx. The content is detailed and the logic is clear. I believe most people still know too much about this, so share this article for your reference. I hope you can get something after reading this article. Let's take a look.
Configuration step
Configure the nginx\ nginx-1.13.4\ conf\ nginx.conf file
# user nobody;worker_processes 1 the errorless 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 {include mime.types; default_type application/octet-stream Log_format main'$remote_addr-$remote_user [$time_local] "$request"'$status $body_bytes_sent "$http_referer"'"$http_user_agent"$http_x_forwarded_for"; access_log logs/access.log main; sendfile on; # tcp_nopush on; # keepalive_timeout 0; keepalive_timeout 65; # gzip on; server {listen 80; server_name localhost # charset koi8-r; # access_log logs/host.access.log main; location ~. *\. (gif | jpg | jpeg | png) ${expires 24h; root djjjqqpinkylamrabbit serverash proxy_store on; proxy_store_access user:rw group:rw all:rw # specify the path where images are stored, and the path to log storage Proxy_temp_path DJUR DJUR Universe serverUniplex # Picture access path proxy_redirect off; proxy_set_header host 127.0.0.1; 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;}} location / {root html; index index.html index.htm;} # error_page 404 / 404.html # redirect server error pages to the static page / 50x.html # error_page 500 502 503 504 / 50x.html; location = / 50x.html {root html;}}
Note: the folder corresponding to d:/pinkylam_server/ should be established.
test
Open a browser and enter the http://127.0.0.1/111.jpg test.
Preview
These are all the contents of the article "how to configure a static file server for nginx". Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.