博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apt-get方式安装lnmp环境
阅读量:5977 次
发布时间:2019-06-20

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

安装nginx sudo apt-get install nginx 安装php和mysql sudo apt-get install php5-cli php5-cgi php5-curl php5-mysql php5-fpm mysql-server 修改nginx配置文件 /etc/nginx/nginx.conf 添加 /etc/nginx/vhost/localhost.conf 文件
server {        listen 80;        server_name localhost; #绑定域名        index index.htm index.html index.php; #默认文件        root /data/webroot; #网站根目录        location ~ \.php$ {                fastcgi_pass 127.0.0.1:9000;                fastcgi_index index.php;                include fastcgi_params;        }        access_log /data/logs/access.log;        error_log /data/logs/error.log;}server {        listen 80;        server_name test.localhost; #绑定域名        index index.htm index.html index.php; #默认文件        root /data/webroot/testRoot; #网站根目录                location ~ \.php$ {                        fastcgi_pass 127.0.0.1:9000;                        fastcgi_index index.php;                        include fastcgi_params;        }        access_log /data/logs/test_access.log;        error_log /data/logs/test_error.log;}

 

检查nginx配置

sudo /usr/sbin/nginx -t

重启nginx

sudo /usr/sbin/nginx -s reload

启动php-cgi

php-cgi -b 127.0.0.1:9000
 

转载地址:http://sysox.baihongyu.com/

你可能感兴趣的文章
矩阵之矩阵乘法(转载)
查看>>
eclipse颜色主题插件(更改字体和背景的颜色)
查看>>
Python _内置函数3_45
查看>>
cf-Igor In the Museum (dfs)
查看>>
数据之路 Day4 - Python基础4
查看>>
使用openCV打开USB摄像头(UVC 小米micro接口)
查看>>
Luogu P3577 [POI2014]TUR-Tourism
查看>>
Scrapy框架的基本使用
查看>>
ActionResult,PartialViewResult,EmptyResult,ContentResult
查看>>
关于泛型类,泛型接口,泛型函数
查看>>
@pathvariable和@RequestParam的区别
查看>>
测试驱动开发
查看>>
C++操作符重载
查看>>
Redis实现分布式锁2
查看>>
【Udacity】线性回归方程 Regression
查看>>
前端架构设计1:代码核心
查看>>
RPC 框架通俗解释 转自知乎(洪春涛)
查看>>
获取cookie后,使用cookie进行接下来的自动化操作
查看>>
算法笔记--数论模板小集(待增)
查看>>
游戏开发中的矩阵初探
查看>>