不做第二个别人,永远做第一个自己。
发布时间:2014-04-10 11:17:22
配置好Nginx现在在添加一个virtual host (xiaoyuan.com)配置如下:# vim /etc/nginx/conf.d/virtual.conf # 在最下面添加server { listen 80; server_name www.xiaoyuan.com; location / { root /usr/share/nginx/xiaoyuan.com; //这路径是网站的路径; .........【阅读全文】
发布时间:2014-04-10 11:16:55
nginx结合php,配置如下: Configure Nginx to execute PHP script.This example shows to use PHP-FPM ( PHP FastCGI Process Manager ). 安装php & php-fpm # yum –enablerepo=epel -y install php php-mbstring php-pear php-f.........【阅读全文】
发布时间:2014-04-10 11:16:24
nginx 结合 perl Configure Nginx to execute Perl script.This example shows to use fcgiwrap + spawn-fcgi. 安装一些辅助软件包!# yum –enablerepo=epel -y install spawn-fcgi fcgi-devel # yum -y groupinstall "Development Tool.........【阅读全文】
发布时间:2014-04-10 11:15:53
使用nginx作为网站服务,在访问网站首页的时候添加一个简单的认证;# yum -y install httpd-tools # vim /etc/nginx/conf.d/default.conf # add follows in "server" section location /basic { .........【阅读全文】