linux nginx配置链接访问图片

发布时间:2024年01月12日

nginx 安装

sudo apt update
sudo apt install nginx

nginx 启动命令

sudo systemctl restart nginx  # 重启
sudo systemctl start nginx #开启
sudo systemctl stop nginx # 关闭
sudo systemctl status nginx # 状态

nginx安装成功验证

访问 http://localhost

设置图片链接访问

 # 使用apt安装nginx 默认配置文件所在位置是 /ect/nginx
sudo vim /etc/nginx/nginx.conf
#文件第一行 
	user www-data;修改为user root;
#http{} 内添加server
server {
        listen      80; #监听端口
        server_name localhost; #本机IP地址
        location /files {
            autoindex on;# 启用目录
            autoindex_exact_size on;#显示文件大小
            autoindex_localtime on;#文件打开时间
            alias /home/image/;#文件、图片所在的目录 注意目录后面一定带 '/'
          }
       }

文件/图片访问

http://本机IP地址/files/图片名字
文章来源:https://blog.csdn.net/weixin_45250558/article/details/135558862
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。