1. 安装PCRE库(Nginx rewrite依赖PCRE库)
下载PCRE: http://www.pcre.org
tar xvzf pcre-8.37.tar.gz cd pcre-8.37 sudo ./configure --prefix=/usr/local sudo make sudo make install
2. 安装Nginx
下载Nginx: http://nginx.org
tar xvzf nginx-1.8.0.tar.gz cd nginx-1.8.0 sudo ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-cc-opt="-Wno-deprecated-declarations" sudo make sudo make install
编译概要:
Configuration summary + using system PCRE library + OpenSSL library is not used + md5: using system crypto library + sha1: using system crypto library + using system zlib library nginx path prefix: "/usr/local/nginx" nginx binary file: "/usr/local/nginx/sbin/nginx" nginx configuration prefix: "/usr/local/nginx/conf" nginx configuration file: "/usr/local/nginx/conf/nginx.conf" nginx pid file: "/usr/local/nginx/logs/nginx.pid" nginx error log file: "/usr/local/nginx/logs/error.log" nginx http access log file: "/usr/local/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"
3. 配置环境变量:
sudo vi ~/.bash_profile # Append content to bash_proflie export PATH=/usr/local/nginx/bin:/usr/local/nginx/sbin:$PATH source ./bash_profile
4. 配置Nginx开机启动:
cd /System/Library/LaunchDaemons sudo touch nginx.plist sudo vi nginx.plist <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>nginx</string> <key>KeepAlive</key> <true/> <key>Program</key> <string>/usr/local/bin/nginx</string> <key>RunAtLoad</key> <true/> </dict> </plist>
载入Nginx开机启动文件
launchctl load -w /System/Library/LaunchDaemons/nginx.plist
5. 启动:
sudo nginx
停止:
sudo nginx -s stop
重启:
sudo nginx -s reload
相关推荐
Nginx安装完成后,可以通过启动它并检查进程来验证安装是否成功。在终端中输入: ``` nginx ``` 如果启动无误,Nginx应该已经开始运行。接着,查看正在运行的进程: ``` ps -ef | grep nginx ``` 如果看到...
/usr/local/etc/nginx/nginx.conf (配置文件路径) /usr/local/var/www (服务器默认路径) /usr/local/Cellar/nginx/1.6.2 (貌似是安装路径) 二、访问localhost:8080 Nginx 默认8080端口,这时已经可以访问了:...
总结来说,"nginx开机自启动安装包"是一个包含了所有必要组件的Nginx安装,可以便捷地在系统启动时自动运行,为用户提供高效且可靠的Web服务。正确理解和管理这些组件,对于运维人员来说至关重要。
本文将详细介绍如何在Docker环境下配置Nginx以实现这一功能,主要涉及`docker-compose.yml`、`nginx.conf`以及`mime.types`文件的配置。 首先,我们来看`docker-compose.yml`文件。这个文件用于定义和配置Docker...
编译完成无误后,你可以通过`make install`将Nginx安装到系统中: ```bash sudo make install ``` 安装完成后,Nginx的可执行文件会被放置在`/usr/local/nginx/sbin`目录下,你可以通过以下命令启动Nginx: ```...
一、nginx 安装与运行 (Mac OS环境) 1. 安装 nginx 可通过 Homebrew 可直接安装: $brew install nginx 安装好后,默认首页的文件在 /usr/local/var/www 文件夹下 默认的配置文件地址在 /usr/local/etc/nginx/nginx...
在Mac操作系统中安装和配置nginx以及PHP环境是很多开发者会遇到的需求,尤其是对于在Mac上进行网站开发、测试的人员来说更是如此。本文将详细介绍使用Homebrew这一MacOS平台上的包管理工具来安装nginx、MySQL和...
在Mac OS X操作系统中安装和配置Nginx服务器可能会遇到一些特定的问题,本文将详细解析在该环境下安装Nginx时可能遇到的挑战及其解决方案。 首先,安装Nginx最常用的方法之一是通过Homebrew包管理器。输入`brew ...
Nginx安装通常推荐使用Homebrew这一MacOS上的包管理工具,因为它可以简化安装和更新的过程。 - 查找Nginx包:首先使用`brew search nginx`命令来搜索可用的Nginx版本。 - 安装Nginx:使用`brew install nginx`命令...
配置Nginx以代理多个Tomcat实例,首先需要在`nginx.conf`配置文件中定义多个server块。每个server块对应一个域名,里面包含一个location块,用于指定处理特定路径的请求。例如: ```conf server { listen 80; ...
#### 安装与配置Nginx 1. **安装依赖包**:安装编译Nginx所需的依赖包,例如GCC、Make等工具。 ```bash yum install gcc gcc-c++ make automake autoconf libtool pcre pcre-devel zlib zlib-devel openssl ...
3. 配置Nginx:在nginx.conf或sites-available目录下的配置文件中,添加以下内容来处理PHP请求: ``` location ~ \.php$ { include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_...
Mac php72+nginx环境配置.txt
2. **configure**: 这是Nginx配置脚本,用于检查系统环境并生成合适的Makefile,以便编译和安装Nginx。运行`configure`会检查你的系统是否满足编译和运行Nginx所需的所有依赖项,并根据系统配置定制编译选项。 3. *...
总之,配置Nginx在Mac环境下访问本地静态资源需要安装Nginx,编辑配置文件,设置监听端口、服务器名称、静态资源路径以及可能的API代理,然后更新hosts文件并重启Nginx。这是一个方便的本地开发环境,可以加速前端...
在安装过程中,用户可能需要对Nginx进行一些基本配置,如设置监听端口、配置日志、指定网站根目录等,这些可以通过编辑nginx.conf文件来完成。用户还可以根据需要自定义配置文件来启用特定的模块或功能。 Nginx还...
### 超详细网站博客域名和二级域名、子域名升级HTTPS免费申请SSL证书配置nginx指南 随着互联网技术的快速发展,网络安全成为了不容忽视的关键问题之一。HTTP作为一种基础的网络传输协议,尽管广泛应用于早期的...
一、Nginx安装 1. 安装Nginx依赖:yum install yum-utils 2. 创建yum配置信息:touch /etc/yum.repos.d/nginx.repo 3. 写入配置,指定yum下载stable版本: ``` [nginx-stable] name=nginx stable repo baseurl=...