安装nginx 1.安装brew命令ruby -e $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)2.使用brew 安装nginxbrew install nginx3.修改配置nginx 文件 (文件应该在 /usr/local/etc/...
安装nginx
1.安装brew命令
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2.使用brew 安装nginx
brew install nginx
3.修改配置nginx 文件 (文件应该在 /usr/local/etc/nginx/nginx.conf)
server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /you/web/path; #配置web目录 #root /usr/local/var/www; autoindex on; index index.html index.htm index.php; #添加php默认 }
(开启PHP支持)修改为如下
location ~ \.php$ { root /you/web/path; #root /usr/local/var/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; #fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
4.启动nginx
sudo nginx
5.有些情况需要打开,php-fpm 否则会报服务器错误~
sudo php-fpm
沃梦达教程
本文标题为:mac nginx 安装及PHP配置
基础教程推荐
猜你喜欢
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- php array分组,PHP中array数组的分组排序 2022-08-01
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- 使用PHP开发留言板功能 2023-03-13
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- PHP中的错误及其处理机制 2023-06-04
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- PHP命名空间简单用法示例 2022-12-01