美文网首页
阿里云ecs服务器ubuntu配置lnmp

阿里云ecs服务器ubuntu配置lnmp

作者: ljh_10e3 | 来源:发表于2018-10-24 11:54 被阅读0次

    1. sudo apt-get update 命令更新源列表。

    2.sudo apt-get install nginx   自动安装 Nginx

    3.sudo apt install mysql-server

    4.sudo mysql_secure_installation 安装MySQL安全组件

    安装过程中首先需要输入MYSQL的root密码.

    当询问“Change the root password?”时,输入“N”

    剩下的问题可以敲击回车键,选择默认选项。

    5. sudo apt install php php-fpm php7.0-mysql  安装php

        为使Nginx支持PHP,需要修改Nginx的配置文件,首先备份原始配置文件。

        1)sudo mv /etc/nginx/sites-available/default /etc/nginx/sites-available/default.old

        2)编辑/etc/nginx/sites-available文件,作为Nginx的配置文件。

                sudo vim /etc/nginx/sites-available/default

                向/etc/nginx/sites-available输入以下内容

    server {

            listen      80;

            server_name  your_site_name.com;

            root /usr/share/nginx/html;

            index index.php index.html;

            location / {

                    try_files $uri $uri/ =404;

            }

            error_page 404 /404.html;

            error_page 500 502 503 504 /50x.html;

            location = /50x.html {

                    root /var/www/html;

            }

            location ~ \.php$ {

                    try_files $uri =404;

                    fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;

                    fastcgi_index index.php;

                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

                    include fastcgi_params;

            }

    }

    修改完Nginx配置,需要重启Nginx

    sudo service nginx restart

    在/usr/share/nginx/html/目录创建info.php文件,测试PHP

    sudo nano /usr/share/nginx/html/info.php

    输入以下内容

    <?php

    phpinfo();

    ?>

    在浏览器打开http://本地IP/info.php

    例如http://10.102.7.193/info.php.

    返回如下内容,则Nginx能够支持PHP

    最后,可以选择删除创建的info.php文件,避免被攻击者利用。

        sudo rm /usr/share/nginx/html/info.php

    相关文章

      网友评论

          本文标题:阿里云ecs服务器ubuntu配置lnmp

          本文链接:https://www.haomeiwen.com/subject/ncmttqtx.html