博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 10.10安装nginx+php的过程
阅读量:5142 次
发布时间:2019-06-13

本文共 1677 字,大约阅读时间需要 5 分钟。

ubuntu 10.10安装nginx+php的过程

装上系统也有一段时间了,也没有装,今天工作时打算用ubuntu开发了,所以就安装nginx,在公司电脑就一路顺风啊!

安装教程地址在这里:http://www.cnblogs.com/breg

当然可以baidu,google其实大体上都差不多,

回家时把我的本本也装上吧!谁知道公司电脑的顺利在笔记本上就一波三折,最终在多费很多时间和脑力的情况下终于圆满解决!

其实具体还是很简单的,只是要注意几个配置的问题!

其主要配置有这些:

1.sudo gedit /etc/nginx/sites-available/default

server {	listen   80; ## listen for ipv4	listen   [::]:80 default ipv6only=on; ## listen for ipv6	server_name  localhost;	access_log  /var/log/nginx/localhost.access.log;	location / {		root   /var/www/nginx-default;		index  index.html index.htm index.php;	}	location /doc {		root   /usr/share;		autoindex on;		allow 127.0.0.1;		deny all;	}	location /images {		root   /usr/share;		autoindex on;	}	error_page  404  /404.html;	# redirect server error pages to the static page /50x.html	#	error_page   500 502 503 504  /50x.html;	location = /50x.html {		root   /var/www/nginx-default;	}	# proxy the PHP scripts to Apache listening on 127.0.0.1:80	#	#location ~ \.php$ {		#proxy_pass   http://127.0.0.1;	#}	# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000	location ~ \.php$ {		fastcgi_pass   127.0.0.1:9000;		fastcgi_index  index.php;		fastcgi_param  SCRIPT_FILENAME  /var/www/nginx-default$fastcgi_script_name; #注意替换网站路径,不然要报input的错误		include fastcgi_params; #特别注意此处有空格,原始文件时没有空格的,我的nginx启动不了就是忘了改这里	}	# deny access to .htaccess files, if Apache's document root	# concurs with nginx's one	#	#location ~ /\.ht {		#deny  all;	#}}

2.sudo gedit /etc/php5/cgi/php.ini

;zend的安装[Zend Optimizer]zend_optimizer.optimization_level=1zend_extension="/etc/zend/ZendOptimizer.so" ;将引号路径换成自己的路径;将注释去掉cgi.fix_pathinfo=1;

转载于:https://www.cnblogs.com/breg/archive/2011/12/06/2277927.html

你可能感兴趣的文章
IE关闭浏览器页签
查看>>
swing 开发常用方法
查看>>
android中改变字体
查看>>
centos安装docker
查看>>
四方在线打印控件使用(简介)
查看>>
python 第三天
查看>>
回射服务器-多路复用 select 01 (阻塞)
查看>>
分享吉林大学机械科学与工程学院,zhao jun 博士的Halcon学习过程及知识分享
查看>>
BitmapData.noise示例
查看>>
肤色阈值分割
查看>>
Android中的菜单
查看>>
【最短路】Vijos P1046 观光旅游
查看>>
Android学习总结——开篇
查看>>
Ubuntu16.04 U盘安装Ubuntu16.04制作 光盘刻录 安装与简介
查看>>
iOS 基础知识
查看>>
PHP 重新格式化var_dump/print_r打印的数组
查看>>
C++11:POD数据类型
查看>>
Delphi中Json格式读写
查看>>
请不要忘记带着梦想时常沐浴阳光
查看>>
交易与风险
查看>>