• Ubuntu 安装phpMyAdmin + 配置nginx


    0x01 安装phpMyAdmin

    ```
    sudo apt-get install phpmyadmin
    ```

    0x02 添加链接

    ```
    sudo ln -s /usr/share/phpMyAdmin /usr/share/nginx/html
    ```
     

    0x03 配置nginx

    添加server节点,监听端口8001
     
    server {
    charset utf-8;
    client_max_body_size 128M;
     
    listen 8001; ## listen for ipv4
    #listen [::]:80 default_server ipv6only=on; ## listen for ipv6
     
    server_name phpmyadmin;
    root /usr/share/phpmyadmin ;
    index index.php;
     
     
    location / {
    # Redirect everything that isn't a real file to index.php
    try_files $uri $uri/ /index.php$is_args$args;
    }
     
    # uncomment to avoid processing of calls to non-existing static files by Yii
    #location ~ .(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
    # try_files $uri =404;
    #}
    #error_page 404 /404.html;
     
    # deny accessing php files for the /assets directory
    location ~ ^/assets/.*.php$ {
    deny all;
    }
     
    location ~ .php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_pass 127.0.0.1:9000;
    #fastcgi_pass unix:/var/run/php7.2-fpm.sock;
    try_files $uri =404;
    }
     
    location ~* /. {
    deny all;
    }

    0x04 重启nginx

    ```
    sudo service nginx restart
    ```
     

    0x05 测试

    1.访问http://127.0.0.1:8001
    2.登陆
    用户名:root
    密码:abc123_


    作  者: Jackson0714
    出  处:http://www.cnblogs.com/jackson0714/
    关于作者:专注于微软平台的项目开发。如有问题或建议,请多多赐教!
    版权声明:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。
    特此声明:所有评论和私信都会在第一时间回复。也欢迎园子的大大们指正错误,共同进步。或者直接私信
    声援博主:如果您觉得文章对您有帮助,可以点击文章右下角推荐一下。您的鼓励是作者坚持原创和持续写作的最大动力!

  • 相关阅读:
    python3中try异常调试 raise 异常抛出
    基于 k8s-搭建 Kubernetes 的 web 管理界面
    PostgreSQL SERIAL创建自增列
    C++之同名覆盖、多态
    golang实现路由中间件middleware
    fastjson源码分析之序列化
    AJPFX实践 java实现快速排序算法
    AJPFX关于IO流的简单总结
    AJPFX关于多态中的动态绑定和静态绑定的总结
    关于java的arrays数组排序示例AJPFX的分享
  • 原文地址:https://www.cnblogs.com/jackson0714/p/phpMyAdmin.html
Copyright © 2020-2023  润新知