Nginx的安装和使用

2018-05-10  本文已影响45人  那就远走

事先准备

# 用sublime打开port.conf
subl /etc/apache2/port.conf
# 找到Listen 80,改为 8080
# 重启apache访问localhost:8080查看是否成功
service apache2 restart

安装

# 更新apt-get的库
sudo apt-get update
# 安装nginx
sudo apt-get install nginx
# 访问 localhost查看是否成功

添加php支持

sudo apt install php7.2-fpm
# subl打开
subl /etc/nginx/sites-available/default
# 具体要更改的地方

...

    # Add index.php to the list if you are using PHP : 这里解释的很清楚了,如果你要用php,就在后面加上 index.php
    index index.html index.htm index.nginx-debian.html index.php;

...

# pass PHP scripts to FastCGI server : 这里告诉你,把php脚本交给FastCGI 服务器处理
location ~ \.php$ {
    include snippets/fastcgi-php.conf;

#   这种方式是直接告诉php-fpm的地址
#   fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
#   With php-cgi (or other tcp sockets): 这里用端口去处理
fastcgi_pass 127.0.0.1:9000;
}
# 找到这一段
; listen = /run/php/php7.2-fpm.sock
# 注销了(添加;),写这一段:
listen = 127.0.0.1:9000
service nginx restart
service php7.2-fpm restart 
# web文档的默认路径依然是 /var/www/html ,在下面新建phpinfo.php,内容你懂得,看看是否成功

常用命令

# 开、关、重启
sudo systemctl start nginx
sudo systemctl stop nginx
sudo systemctl restart nginx

# 重新加载
sudo systemctl reload nginx

# 禁止服务(开机自动运行)和允许服务
sudo systemctl disable nginx
sudo systemctl enable nginx
sudo nginx -t
# 这里有个问题:如果你不用超级管理员身份运行这条命令,会很多错:因为普通用户无法操作nginx。所以当你忘记写sudo而引起报错时不要怕,只要sudo执行这条命令没错,就没问题。

配置失败,但是看不到错误?开启php报错功能

# php.ini 在这里
subl /etc/php/7.2/fpm/php.ini

# 开启php 报错功能
display_errors = On
display_startup_errors = On
上一篇下一篇

猜你喜欢

热点阅读