Nginx源码包安装的配置文件/usr/local/nginx/conf/nginx.conf注释掉server{},增加http{include vhost/*.conf;}mkdir /usr/local/nginx/conf/vhostvim /usr/local/nginx/conf/vhost/apeng.com.confserver
{
分类:
系统相关 时间:
2018-02-28 19:50:12
阅读次数:
169
#vim/etc/init.d/nginx#!/bin/bash#chkconfig:-3021#description:httpservice.#SourceFunctionLibrary./etc/init.d/functions#NginxSettingsNGINX_SBIN="/usr/local/nginx/sbin/nginx"NGINX_CONF="/usr/local/nginx/conf/nginx.conf"NGINX_PID="/usr/local/nginx/logs/nginx.pi..
分类:
其他好文 时间:
2017-03-12 22:05:35
阅读次数:
247
nginx版本:1.6.3配置编译参数:#cd/usr/local/src/nginx-1.6.3#./configure\--prefix=/usr/local/nginx\--with-http_realip_module\--with-http_sub_module\--with-http_gzip_static_module\--with-http_stub_status_module\--with-pcre结束后,照例echo$?看看是否有问题编译..
分类:
其他好文 时间:
2016-08-19 22:36:34
阅读次数:
268
LNMP是linux、nginx、mysql、php的简写;LNMP与LAMP环境一样也是用来做web网站后台的,nginx是轻量级的,进程间的通讯使用php-fpm独立使用;apache则是比较臃肿的,调用php的模块来完成的,需要加载很多模块,运行起来相对较慢。一、安装MySQL我们平时安装MySQL都是源码包安装..
分类:
系统相关 时间:
2015-05-12 19:11:00
阅读次数:
300