配置?
程序员文章站
2022-06-13 17:49:00
...
win7+nginx+php搭建
?
操作系统:window7??? php5.4.17???? nginx1.5.2
?
?下载
下载php,地址:http://www.php.net/downloads.php如图
先在E盘创建一个名叫“wnmp”的文件夹,然后把PHP解压到改文件下。
- 下载nginx,地址:http://nginx.org/en/download.html如图
?
?
- 在wnmp文件夹中创建名为“nginx”文件夹,把nginx解压到改文件夹下。
配置?
- 进入php文件夹,将“php.ini-development”修改为php.ini
- 打开php.ini文件,对一下内容进行修改
-
extension_dir = "ext"date.timezone = Asia/ChongQing
?
因为nginx需要cgi方式的php,所以还需要更改一下几处内容
enable_dl = Oncgi.force_redirect = 0cgi.fix_pathinfo=1fastcgi.impersonate = 1cgi.rfc2616_headers = 1
?到这里PHP配置告一段落,接着配置nginx。
?
- 先启动nginx,用DOS进入nginx路径,用一下命令启动nginx
-
nginx -s reload //重启Nginxnginx -s stop //暂停nginx -s quit //退出nginxstart nginx //启动
?然后在浏览器的地址栏中输入127.0.0.1出现一下界面,说明nginx启动正常 -
- nginx默认访问的是E:\wnmp\nginx\html\index.html下面的index.php文件。
- 修改nginx.conf(E:\wnmp\nginx\conf\nginx.conf)文件,进行网站的配置
-
events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; #本地IP root E:/wnmp/www; #存放网站的根目录 location / { index index.php index.html index.htm; #添加index.php。 #autoindex on;#如果文件不存在列出目录结构; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; #fastcgi及监听的端口与php的cgi启动时要一致 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }}
?
?到这里所以的配置完成。
?
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
上一篇: PHP的引用详解,PHP引用详解
下一篇: PHP中常见的10个字符串处理实例代码
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论