我的编程空间,编程开发者的网络收藏夹
学习永远不晚

爱快docker安装PHP和Nginx

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

爱快docker安装PHP和Nginx

本文章参考连接:Docker 安装 PHP | 菜鸟教程

安装PHP 

1、搜索并下载PHP镜像

 

搜索一个带-fpm的php镜像并下载

 2、创建PHP容器

 

 安装Nginx

1、下载Nginx镜像

 

 2、创建Nginx容器

 配置Nginx

1、配置default.conf

进入存有default.conf的目录

root@nginx:/# cd /etc/nginx/conf.d/
root@nginx:/etc/nginx/conf.d# ls
default.conf
root@nginx:/etc/nginx/conf.d# 

备份原有配置

root@nginx:/etc/nginx/conf.d# cp default.conf default.conf.bak
root@nginx:/etc/nginx/conf.d# 

查看原有配置

root@nginx:/etc/nginx/conf.d# cat default.conf
server {
    listen       80;
    listen  [::]:80;
    server_name  localhost;

    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

root@nginx:/etc/nginx/conf.d# 

将配置内容复制到本地并修改 

将修改好的文件上传到本地址映射文件夹

 root@nginx:/etc/nginx/conf.d# cd /usr/share/nginx/html
root@nginx:/usr/share/nginx/html# ls
default.conf  hosts  index.css  index.html  index.php

将 default.conf 文件复制到原来的位置

root@nginx:/usr/share/nginx/html# cp ./default.conf /etc/nginx/conf.d/
root@nginx:/usr/share/nginx/html# cd /etc/nginx/conf.d/
root@nginx:/etc/nginx/conf.d# ls
default.conf  default.conf.bak
root@nginx:/etc/nginx/conf.d# cat default.conf
server {
    listen       80;
    listen  [::]:80;
    server_name  localhost;

    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           html;
        fastcgi_pass   192.168.8.3:9000;
        fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

root@nginx:/etc/nginx/conf.d# 

2、配置hosts

找到对应目录

root@nginx:/etc/nginx/conf.d# cd /etc/     
root@nginx:/etc# ls
adduser.conf            ca-certificates.conf  deluser.conf  gai.conf  host.conf  issue.net      localtime    netconfig      pam.d      rc1.d  rcS.d        shadow-  systemd
alternatives            cron.d                dpkg          group     hostname   kernel         login.defs   nginx          passwd     rc2.d  resolv.conf  shells   terminfo
apt                     cron.daily            e2scrub.conf  group-    
hosts      ld.so.cache    logrotate.d  nsswitch.conf  passwd-    rc3.d  rmt          skel     timezone
bash.bashrc             debconf.conf          environment   gshadow   init.d     ld.so.conf     mke2fs.conf  opt            profile    rc4.d  security     ssl      ucf.conf
bindresvport.blacklist  debian_version        fonts         gshadow-  inputrc    ld.so.conf.d   motd         os-release     profile.d  rc5.d  selinux      subgid   update-motd.d
ca-certificates         default               fstab         gss       issue      libaudit.conf  mtab         pam.conf       rc0.d      rc6.d  shadow       subuid   xattr.conf
root@nginx:/etc# 

将hosts配置复制到本地进行修改

root@nginx:/etc# cat hosts
127.0.0.1       localhost
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.8.2     nginx
root@nginx:/etc# 

将修改的hosts复制到它容器中原来的位置

root@nginx:/etc# ls
adduser.conf            ca-certificates.conf  deluser.conf  gai.conf  host.conf  issue.net      localtime    netconfig      pam.d      rc1.d  rcS.d        shadow-  systemd
alternatives            cron.d                dpkg          group     hostname   kernel         login.defs   nginx          passwd     rc2.d  resolv.conf  shells   terminfo
apt                     cron.daily            e2scrub.conf  group-    hosts      ld.so.cache    logrotate.d  nsswitch.conf  passwd-    rc3.d  rmt          skel     timezone
bash.bashrc             debconf.conf          environment   gshadow   init.d     ld.so.conf     mke2fs.conf  opt            profile    rc4.d  security     ssl      ucf.conf
bindresvport.blacklist  debian_version        fonts         gshadow-  inputrc    ld.so.conf.d   motd         os-release     profile.d  rc5.d  selinux      subgid   update-motd.d
ca-certificates         default               fstab         gss       issue      libaudit.conf  mtab         pam.conf       rc0.d      rc6.d  shadow       subuid   xattr.conf
root@nginx:/etc# cp /usr/share/nginx/html/hosts ./
root@nginx:/etc# cat hosts
127.0.0.1       localhost
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.8.3     php

root@nginx:/etc# 

测试

创建php文件

放到本地挂载的目录中

得到

来源地址:https://blog.csdn.net/weixin_43788435/article/details/126449806

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

爱快docker安装PHP和Nginx

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

windows云服务器安装爱快

如果您正在使用WindowsServer云服务器(WindowsAzureCloudServer),我可以为您提供有关安装爱快服务器的一些信息:确定您的网络是否与Internet协议(TCP/IP)兼容,并确认您的计算机是否具有适当的硬件和软件支持,例如操作系统和补丁程序。如果您使用的是Linux操作系统,那么您需要检查您的软件列表并找到适用于WindowsServer云服务器的软件包。选择适当的
2023-10-26

Nginx和PHP编译安装指南

Nginx和PHP编译安装指南在网站服务器搭建过程中,Nginx作为一个高性能的Web服务器和反向代理服务器,而PHP则是一种流行的服务器端脚本语言,二者的结合可以实现快速、稳定地运行动态网站。本文将详细介绍Nginx和PHP的编译安装过
Nginx和PHP编译安装指南
2024-02-27

如何编译安装nginx和php

这篇文章主要介绍“如何编译安装nginx和php”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“如何编译安装nginx和php”文章能帮助大家解决问题。编译安装nginx和php的方法:1、通过yum
2023-07-04
2023-08-31

docker安装nginx容器的方法

Nginx也是一款服务器,我们常用它做如:反向代理、负载均衡、动态与静态资源的分离的工作,这篇文章主要介绍了docker安装nginx,需要的朋友可以参考下
2023-01-04

Docker安装Nginx的方法是什么

这篇文章给大家介绍Docker安装Nginx的方法是什么,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。方法一、通过 Dockerfile构建创建Dockerfile首先,创建目录nginx,用于存放后面的相关东西。[r
2023-06-06

Docker安装Nginx问题怎么解决

本篇内容主要讲解“Docker安装Nginx问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Docker安装Nginx问题怎么解决”吧!问题:在Docker中装Nginx时遇到了如下错
2023-06-22

Docker怎么安装Nginx并修改Nginx配置文件

这篇文章主要介绍了Docker怎么安装Nginx并修改Nginx配置文件的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Docker怎么安装Nginx并修改Nginx配置文件文章都会有所收获,下面我们一起来看看吧
2023-07-05

设置 PHP-FPM 和 Nginx Docker 容器

本文将讨论在 Docker 上进行本地开发时如何设置 PHP、PHP-FPM 和 NGINX 容器。要点:在命令行上构建和运行容器。Docker 文件及其用途。容器如何交互。确保您的设备上安装了 Docker 程序和 Git Bash。设置
设置 PHP-FPM 和 Nginx Docker 容器
2024-02-27

如何成功编译安装Nginx和PHP

如何成功编译安装Nginx和PHPNginx 是一款高性能的 Web 服务器,常用于搭建网站和反向代理等服务。而 PHP 则是一种流行的服务器端脚本语言,用于开发动态网页。本文将介绍如何成功编译安装 Nginx 和 PHP 的步骤,并提供
如何成功编译安装Nginx和PHP
2024-02-27

Docker快速搭建PHP+Nginx+Mysql环境及踩坑

本文主要介绍了Docker快速搭建PHP+Nginx+Mysql环境及踩坑,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2022-11-13

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录