
Linux
Wonghzx
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux 开机启动nginx
1、在 /etc/init.d/nginx 没有Nginx的话 就手动创建一个Nginx文件 #! /bin/sh # chkconfig: 2345 55 25 # Description: Startup script for nginx webserver on Debian. Place in /etc/init.d and # run 'update-rc转载 2017-04-24 14:35:53 · 387 阅读 · 0 评论 -
Nginx 配置文件(nginx.conf)
user www www; worker_processes auto; error_log /data/wwwlogs/error_nginx.log crit; pid /usr/local/nginx/logs/nginx.pid; #Specifies the value for maximum file descriptors that can be open原创 2017-06-04 18:09:12 · 298 阅读 · 0 评论 -
Nginx 配置域名 .conf 文件
server { listen 80; server_name .cfc.com www.cfc.com; #这里是配置域名 index index.html index.htm index.php; root /data/wwwroot/chunfengchui/; #这里是你的项目文件路径 if (!-e $request_fil原创 2017-06-04 18:11:22 · 2005 阅读 · 1 评论 -
解决svn: Can't convert string from 'UTF-8' to native encoding问题
更新SVN的时候遇到错误:svn: Can't convert string from 'UTF-8' to native encoding: 原因是checkout 项目有中文目录文件 在 终端 输入 export LC_ALL=zh_CN.UTF-8原创 2017-07-02 20:26:17 · 1913 阅读 · 0 评论