The installation process is omitted (I installed it directly using start up Start (restart) nginx, the following two commands are OK: systemctl restart nginx; # Note: nginx here is not a directory, it is /usr/sbin/nginx -s reload; Generally, if there is no error, it means the startup is successful. Verify whether nginx is started on the page Enter the IP address in the browser and return to the CentOS page. Is this wrong? root /usr/share/nginx/html; The content of index.html in this directory is the content of the centos homepage, which means there is no problem and nignx is started (you can also change the title of index.html to confirm it). Preparation mkdir -p /data/images; # Create a directory for storing image files chmod -R 755 /data/images; # Authorize cd /data/images; Then use the rz command to upload a picture 01.png vim /etc/nginx.conf, add configuration: location /images { root /data; autoindex on; } Browser input: Using alias configuration Of course, you can also use aliases: location /images { alias /data/images; # It is said that the '/' must be added at the end, but in practice, autoindex on can be run without it; } The following writing has problems: location /images { alias /data; autoindex on; } What’s the problem? Misconfiguration In reality, it may not be that smooth and there will be many pitfalls. Incorrect configuration example 1 (root) location /images { root /data/images; autoindex on; } Enter ip/data/images/01.png in the address bar and find that it cannot be obtained. Why? Expected address: Found it, there is one more image, other The difference between root and alias |
– | root | alias |
---|---|---|
address | root + location | If no match is found, alias + location If a match is found, the part of alias that matches locaiton will be replaced |
There are other differences. It is said that the alias path must be followed by /
, but this has not been verified.
What does autoindex on do?
autoindex Set up directory browsing.
on: The file list will be displayed when the address bar goes to images
off: The full path of the file is required, and the page that only goes to the directory will prompt 403 forbidden
location /images { alias /data; # Directory browsing function, on: the address bar will display the file list when it reaches images off: the full path of the file is required, and it will only prompt 403 forbidden when it reaches the directory page autoindex on; }
ps: The difference between root and alias in nginx configuration
For example: when accessing the directory http://127.0.0.1/download/*, let it go to the directory /opt/app/code to find it.
Method 1 (using the root keyword):
location / { root /usr/share/nginx } location /download { gzip_static off; tcp_nopush off; root /opt/app/code; }
Result: When accessing, he went to the directory /opt/app/code/download/ to search. That is: it will add another layer of /download directory in this directory
Method 2 (using the alias keyword):
location / { root /usr/share/nginx } location /download { gzip_static off; tcp_nopush off; alias /opt/app/code; }
Result: When accessing, go directly to the /opt/app/code/ directory.
Summarize
This is the end of this article about building an image server with nginx (the difference between root and alias). For more information about building an image server 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!
<<: Detailed explanation of Javascript string methods
>>: Implementation of MySQL5.7 mysqldump backup and recovery
1. SHOW PROCESSLIST command SHOW PROCESSLIST show...
Simple application deployment 1. Directory struct...
1. Vulnerability Description On May 15, 2019, Mic...
Base image The base image has two meanings: Does ...
I started using Linux for development and enterta...
There are two ways to configure multiple projects...
Today, when I logged into the company's inter...
This article shares the specific code of js to im...
need Add a paging bar, which can jump to the page...
Common nmcli commands based on RHEL8/CentOS8 # Vi...
Tab bar: Click different tabs to display differen...
Page layout has always been my concern since I st...
When I was writing join table queries before, I a...
Preface I'm currently working on the data ana...
Table of contents Preface: Encryption algorithm: ...