码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu16.04使用apt安装完nginx常见问题

时间:2019-08-24 13:21:36      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:显示   remove   move   乱码   bsp   etc   tor   apt-get   中文乱码   

1、安装完并remove掉后重新install后没nginx.conf文件

解决办法:技术图片

apt-get -y --purge remove nginx*

apt-get -y autoremove

apt -y install nginx

 

2、搭建文件服务器:

apt -y install nginx                                   #安装

cp /etc/nginx/nginx.conf{,.bak}                #备份主配置文件

vim /etc/nginx/conf.d/file.conf                 #配置配置文件

server {
listen 80; # 监听端口
server_name 192.168.1.101;     # 自己PC的ip或者服务器的域名
charset utf-8;     # 避免中文乱码
root /var/www/html;     # 文件路径
location / {
autoindex on;     # 索引
autoindex_exact_size on;     # 显示文件大小
autoindex_localtime on;        # 显示文件时间
     }
}

service nginx reload              #重新载入

技术图片

 

Ubuntu16.04使用apt安装完nginx常见问题

标签:显示   remove   move   乱码   bsp   etc   tor   apt-get   中文乱码   

原文地址:https://www.cnblogs.com/smlile-you-me/p/11404110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!