全面剖析Nginx.conf文件配置各项
    Nginx服务器nginx.conf的配置文件说明. #运行用户 user www-data; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 error_log /logs/nginx/error.log; pid /logs/mginx/nginx.pid; #工作模式及连接数上限 events { use epoll; #epoll是多路复用IO(I/O Multiplexing)中的一种方式,但是仅用于linux2.6以上内核,可以大大提高nginx的性能 worker_connections 1024;#单个后台worker process进程的最大并发链接数 # multi_accept on;
....
nginx设置目录查看权限验证
    设置目录查看权限验证,是nginx的一项安全设置,在本地就可测试,有兴趣的可以尝试:    1.搜索下载htpasswd.sh文件或者自己创建#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH echo "=====================================" echo "# A tool like htpasswd for Nginx #" echo "#-----------------------------------#" echo "# Author:Licess http://www.lnmp.org #" echo "=====================================" #set UserName username="
....
nginx 配置排错
    nginx配置过程中若是出现再也无法启动的情况,自己还是难以排查,可以查看,nginx的error.log;    apt-get安装的默认配置文件(/etc/nginx/nginx.conf)下error_log开启,查看下列项: access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log;    所以可以使用less|cat|more error.log查看对应的错误记录,有针对性的更改配置!....
Nginx配置详解
server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; root /usr/share/nginx/html; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name localhost; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. #try_files $uri $uri/ =404; try_files $uri $uri/ /index.php; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules
....
Nginx显示localhost目录
    nginx 运行localhost,默认不能目录结构,不是因为index.html,删除之后同样不能.想要显示目录,需要配置/etc/nginx/sites-enabled/default,如图:    autoindex on;    另外两个参数:     autoindex_exact_size off;    默认为on,显示出文件的确切大小,单位是bytes。    改为off后,显示出文件的大概大小,单位是kB或者MB或者GB    autoindex_localtime on;    默认为o
....
Ubuntu配置LNMP
    ubuntu配置当然就是apt-get方式:    系统:Ubuntu 14.04 LTS 64bit    1.安装MySQL 5.5.36(建议采用这个,因为与php-mysql模块版本一致)    sudo apt-get install mysql-server mysql-client    会提示输入密码    root  password *** Enter    password repeat *** Enter    安装完成后,通过下面的命令查看,发现mysql进程已经启动了    ps auxf | grep mysql 
....