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 # 状态
sudo systemctl restart nginx.service #重启
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/图片名字