记录日常运维,分享学习经验<br>Record daily operation and maintenance and share learning experience
阿豪运维笔记

记录日常运维,分享学习经验
Record daily operation and maintenance and share learning experience

码龄9年 | 文章:1022 | 浏览:315.7万
Linux之Nginx安装 学习笔记

#cd /usr/local/src#wget http://nginx.org/download/nginx-1.12.1.tar.gz    //下载安装包# tar -zxvf nginx-...

php扩展模块安装 学习笔记

如何编译一个php的mysqli扩展模块呢?# cd /usr/local/src/    //进入安装包存放目录# wget http://mirrors.sohu.com/php/php-5....

PHP的一些相关配置 教程笔记

查看php配置文件位置,最准确的办法是在站点创建php探针# /usr/local/php/bin/php -i|grep -i "loaded configuration file" ...

Apache限定某个目录禁止解析php 学习笔记

禁止解析php主要是为了安全,一般静态文件或者图片所存放的目录下是不允许放PHP的,以防黑客上传php木马设置步骤如下<Directory /data/wwwroot/ahao1.com/admin&...

Apache如何配置防盗链 学习笔记

通过限制referer来实现防盗链的功能配置文件增加如下内容<Directory /data/wwwroot/ahao1.com>#设置白名单渔民SetEnvIfNoCase ...

Apache访问日志介绍 学习笔记

访问日志记录用户的每一个请求# vim /usr/local/apache2.4/conf/httpd.conf //搜索LogFormatLogFormat "%h %l %u %t \"%r\...