Php、MySQL环境配置

不言
发布: 2018-04-28 16:50:02
原创
2050人浏览过

Linux(ubuntu)下配置PHP环境

安装mysql

  • sudo apt-get update 更新源

  • apt-get install mysql-server

安装nginx

  • apt-get install nginx

安装php5.6

  • apt-get install software-properties-common python-software-properties

  • add-apt-repository ppa:ondrej/php

    立即学习PHP免费学习笔记(深入)”;

  • sudo apt-get update

  • apt-get install php5.6 php5.6-fpm php5.6-gd php5.6-mbstring php5.6-mysql php5.6-zip php5.6-xml php5.6-mcrypt php5.6-redis

配置nginx

  • 配置文件在/etc/nginx/site-av....下,可以直接复制default配置修改,

server {    listen 443;

    server_name riji.xinbingliang.cn;
    ssl on;
    root /var/www/riji.xinbingliang.cn;    # Add index.php to the list if you are using PHP
    index index.php index.html app.php;    # ssl_certificate   /etc/nginx/cert/riji/214437081420556.pem;
    # ssl_certificate_key  /etc/nginx/cert/riji/214437081420556.key;
    # ssl_session_timeout 5m;
    # ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
    # ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    # ssl_prefer_server_ciphers on;

    location / {        index index.php;
        try_files $uri $uri/ =404;        if (!-e $request_filename) {
            rewrite ^/(.*)$ /index.php/$1 last;
        }
    }

    location ~ .php(.*)$ {
            fastcgi_pass   unix:/run/php/php5.6-fpm.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $DOCUMENT_ROOT$fastcgi_script_name;

            fastcgi_split_path_info ^(.+\.php)(/?.+)$;

            fastcgi_param PATH_INFO $1;

            include        fastcgi_params;
    }
}
登录后复制
  • 将修改的配置创建软连接到/etc/nginx/site-en...下

  • 重启nginx

相关推荐:

vue-cli操作Webpack环境配置

wampserver+phpstorm+xdebug环境配置调试php代码

以上就是Php、MySQL环境配置 的详细内容,更多请关注php中文网其它相关文章!

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号