参考一
参考二

1、添加Nginx的repository

  1. sudo yum install epel-release

2、安装Nginx

  1. sudo yum install nginx

3、启动Nginx

  1. sudo systemctl start nginx
  2. 或者
  3. service nginx start

4、访问

  1. 默认端口80
  2. http://8.142.76.223/

image.png

5、设置文件夹

5.1、修改config文件

  1. cd /etc/nginx
  2. vim nginx.conf
  1. 5.2、在一个server{}中添加 一个location 部分
  1. server {
  2. listen 8091;
  3. server_name _;
  4. location / {
  5. root /data/upload/; # 多联屏 普惠
  6. autoindex on;
  7. autoindex_exact_size off;
  8. autoindex_localtime on;
  9. }
  10. error_page 404 /404.html;
  11. location = /404.html {
  12. }
  13. error_page 500 502 503 504 /50x.html;
  14. location = /50x.html {
  15. }
  16. }

5.3、新建 /data/upload/文件夹,重启nginx

  1. sudo systemctl enable nginx
  2. service nginx restart

6、验证

copy 一张图片到 server 的该共享目录下,可以使用 WinSCP 工具
浏览器输入地址http://8.142.76.223:8091/,看到如下页面:
image.pngimage.png