sudo apt update
sudo apt install nginx
sudo systemctl restart nginx # 重启
sudo systemctl start nginx #开启
sudo systemctl stop nginx # 关闭
sudo systemctl status 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/图片名字