nginx
CC_小硕
这个作者很懒,什么都没留下…
展开
-
CentOS 6.6编译安装Nginx1.6.2+MySQL5.6.21+PHP5.6.3
vi /etc/sysconfig/iptables #编辑防火墙配置文件# Firewall configuration written by system-config-firewall# Manual customization of this file is not recommended.*filter:INPUT ACCEPT [0:0]:FOR转载 2017-04-19 11:02:52 · 493 阅读 · 0 评论 -
在linux下安装或者卸载nginx
如果迩是在ubuntun下安装nginx、建议先卸载掉自带的版本、太旧了、0.7的、uWsgi都不支持、还要打补丁、太麻烦了、如果是默认安装的话、一定是使用了apt-get的方式来安装的、那么莪们就使用apt-get的方式来卸载吧、sudo apt-get --purge remove nginx完成后再试下which nginx存在不、不存在就是已经成功卸了还是从源码转载 2017-04-19 15:13:47 · 7628 阅读 · 0 评论 -
CodeIgniter在nginx下404 not found
server { listen 80; server_name test.platform; charset utf8; root /data/www/platform/trunk; location / { index index.html index.php;原创 2017-04-19 11:22:50 · 1778 阅读 · 0 评论 -
云服务器LNMP环境搭建
原文地址:http://blog.csdn.net/zjiang1994/article/details/72884151写在前面关于目的这是一篇介绍如何在云服务器上搭建LNMP环境的指北南内容基于我近一段时间来的学习和实践,所以有些内容会和网上其他文章有重复,所以说本文目的在于通过前辈们的知识,并且尽量清晰的总结出一套行之有效的方法。关于L转载 2017-06-07 14:27:08 · 603 阅读 · 0 评论 -
CentOS7.2编译安装LNMP
1、环境说明基础环境Linux+Nginx+MySQL+PHPlinux:7.2nginx:1.10.2mysql:5.6.17php:5.5.122、部署说明php安装目录:/usr/local/phpphp.ini配置文件路径:/usr/local/php/etc/php.iniNginx安装目录:/usr/local翻译 2017-06-12 18:49:20 · 276 阅读 · 0 评论 -
使Nginx服务器支持.htaccess的方法
这篇文章主要介绍了使Nginx服务器支持.htaccess的方法,.htaccess配置文件设置是Apache上的好东西,现在我们让Nginx服务器也能使用它,需要的朋友可以参考下可能很多朋友都常用nginx不支持.htaccess,只有apache才支持.htaccess文件,其实这是错误的看法nginx也是支持.hatccess的哦,下面我来给各位总结一下配置方法。转载 2017-08-22 11:35:31 · 24091 阅读 · 0 评论 -
nginx.conf
# listen 80; listen 443; server_name tcjinwan.com www.tcjinwan.com; ssl on; root /www/wihobby/wihobby_php/public; index index.php index.html index.htm ; ssl_certificate ...原创 2018-06-11 18:59:17 · 201 阅读 · 0 评论 -
nginx 代理 nodejs
upstream nodejs{ server 127.0.0.1:3000; keepalive 64; } server { listen 80; server_name yapi.2kun.cn; access_log /data/wwwlogs/yapi_nginx.log...原创 2019-04-11 16:10:10 · 738 阅读 · 0 评论