vlambda博客
学习文章列表

dnmp精讲二(NGINX与PHP实现通信配置)



视频素材:

Replay Share Like

0 / 0

Original
,
dnmp精讲二(NGINX与PHP实现通信配置)
卡二条的技术圈
进度条,百分之0
00:00
/
14:01
14:01
全屏

继续观看

dnmp精讲二(NGINX与PHP实现通信配置)

相关代码:

默认服务

一、 默认dnmp环境下面存在一个localhost的配置。

server {
    listen       80  default;
    server_name  localhost;
    root   /www/localhost;
    index  index.php index.html index.htm;
    location ~ \.php$ {
        fastcgi_pass   php:9000;
        include        fastcgi-php.conf;
        include        fastcgi_params;
    }
}

二、 访问默认域名

http://127.0.0.1

配置虚拟域名

一、 在conf.d目录下面创建nginx配置文件。

二、 添加NGINX配置。

server {
  listen 80;
  server_name laravel8.com;
  root /www/laravel8/public;
  index index.php index.html;

  access_log  /var/log/nginx/nginx.laravel8.com.access.log  main;
  error_log  /var/log/nginx/nginx.laravel8.com.error.log  warn;

  location / {
    try_files $uri $uri/ /index.php?$query_string;
  }

  location ~ \.php$ {
      fastcgi_pass   php:9000;
      include        fastcgi-php.conf;
      include        fastcgi_params;
  }
}