你所选择的标签为: Nginx

MAMP PRO 配置多站点 404 解决方案

06

April

2020

不推荐:

直接修改 MAMP PRO 软件内的 nginx.conf 文件 /Library/Application
Support/appsolute/MAMP PRO/conf/nginx.conf
。在 location / {} 把方法一的代码添加进去。

此方法虽然有效,但每次 MAMP PRO 内新建/修改站点配置时,都将会被重新覆盖。

[ 查看全文... ]

CentOS7.3搭建LNMP环境(Nginx10.1+MariaDB5.5+PHP7.1)

29

August

2017

阿里云(ECS) CentOS7.3搭建LNMP环境(Nginx 1.10.2 + MariaDB 5.5.52 + PHP 7.1.8)

一、安装 Nginx

1. 使用 yum 安装 Nginx:
# yum install -y nginx

2. 启动 Nginx:
# systemctl start nginx

3. 设置 Nginx 随系统自动启动:
# systemctl enable nginx
[ 查看全文... ]