centos6.3环境下nginx,php,memcache,memadmin的安装部署3
整合nginx和php-fpm
mkdir /web cd /web mkdir htdocs
编辑/root/nginx-1.2.7/conf/nginx.conf,而非/usr/local/nginx/conf/nginx.conf,在文本中server段修改配置:
... location / { root /web/htdocs; index index.php index.html index.htm; } ... location ~ \.php$ { root /web/htdocs; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /web/htdocs/$fastcgi_script_name; include fastcgi_params; }测试
vim /web/htdocs/index.php <?php phpinfo(); ?>
接下一篇...
相关推荐
Noneyes 2020-11-10
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23