nginx实验---lnmp实现多虚拟主机部署wordpress和phpmyadmin,并为后者提供https,及rewrite功能

简介:

1.lnmp实现多个虚拟主机,部署wordpress和phpmyadmin,并为后一个主机提供https。

2.配置rewrite,即使用户使用http协议访问phpmyadmin的站点,最终也会使用https重新请求资源。


-------------------------------------------------------------------------------------------

一、安装nginx

 

方法一:编译安装

1.下载nginx程序包,传导至CentOS主机中,并解压。

2.进入解压目录

3.~]# ./configure --prefix=/usr/local/nginx--sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf--error-log-path=/var/log/nginx/error.log--http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid--lock-path=/var/lock/subsys/nginx.lock --user=nginx --group=nginx--with-http_ssl_module --with-http_v2_module --with-http_dav_module--with-threads --with-file-aio --with-http_stub_status_module

4. make -j 4 && make install

 

注意:1.启动服务需要事先创建nginx用户和nginx组;

2.若编译错误提示缺少编译软件可以 yum -y install gcc gcc-c++autoconf automake make

 

方法二:EPEL源的安装包

 [root@zj06 ~]# cd /etc/yum.repos.d/

 [root@zj06yum.repos.d]# vim nginx.repo

   [nginx]

name=nginx repo

baseurl=http://nginx.org/packages/centos/7/$basearch/

gpgcheck=0

enabled=1

[root@zj06 yum.repos.d]# yum install -y nginx

 

二、创建虚拟机


[root@zj06 ~]# mkdir -pv/var/www/vhost{1,2}

 

[root@zj06 ~]# echo"www1.zrs.com" >> /var/www/vhost1/index.html

[root@zj06 ~]# echo"www2.zrs.com" >> /var/www/vhost2/index.html

[root@zj06 ~]# vim /etc/nginx/nginx.conf

server {

      listen       80;

      server_name  www1.zrs.com;

      location / {

          root   /var/www/vhost1;

          index index.php index.html index.htm;

      }

}

server {

      listen       80;

      server_name  www2.zrs.com;

       location / {

          root   /var/www/vhost2;

           index index.php index.html index.htm;

      }

}

 

[root@zj06 ~]#nginx -t   ///检查语法没问题

[root@zj06~]# nginx -s reload     ///重启服务

 

客户端测试

wKioL1nhaVbihErZAAAXCuDqNq0556.png

wKiom1nhbBjB14TVAAAXnYat7jA722.png

三、安装php和mariadb,测试连接

 

[root@zj06 ~]# yum install -y php-fpm mariadb-server mariadb

配置nginx支持php解析

[root@zj06 ~]# vim /etc/nginx/nginx.conf

server {

      listen       80;

      server_name  www1.zrs.com;

      location / {

          root   /var/www/vhost1;

          index index.php index.html index.htm;

      }

       location ~ \.php$ {

           root           /var/www/vhost1;

           fastcgi_pass   127.0.0.1:9000;

           fastcgi_index  index.php;

           fastcgi_param SCRIPT_FILENAME /var/www/vhost1/$fastcgi_script_name;

           include        fastcgi_params;

       }

}

server {

      listen       80;

      server_name  www2.zrs.com;

      location / {

          root   /var/www/vhost2;

           index index.php index.html index.htm;

      }

       location ~ \.php$ {

           root           /var/www/vhost2;

           fastcgi_pass   127.0.0.1:9000;

           fastcgi_index  index.php;

           fastcgi_param SCRIPT_FILENAME /var/www/vhost2/$fastcgi_script_name;

           include        fastcgi_params;

       }

 

}

 

[root@zj06 ~]# nginx -t   ///检查语法没问题

[root@zj06 ~]# nginx -s reload     ///重启服务


修改两个主页index.html为index.php

并添加测试段内容:

<?php

       Phpinfo();

?>


客户端测试

wKiom1nhbFng7SM5AAEOjOu5h2w799.png

wKioL1nhaaPCyPIOAAEMsYJiC0E933.png

 

创建数据库,授权用户,并刷新

MariaDB [(none)]> create database wpsdb;

MariaDB [(none)]> grant all on wpsdb.*TO 'wpuser'@'172.16.%.%'IDENTIFIED BY'123456';

MariaDB [(none)]> create database pma;

MariaDB [(none)]> grant all on pma.* TO'pmauser'@'172.16.%.%'IDENTIFIED BY'123456';

MariaDB [(none)]> FLUSH PRIVILEGES;

 

测试php和数据库能否正常连接

[root@zj06 ~]# vim/var/www/vhost1/index.php

 wKioL1nhawXjZxCOAAAVaQ-sQOg628.png

vhost2也同样设置成这样,相关数据库内容要改为pma的。

 

客户端测试

wKiom1nhbfOwaOXWAAAkXFJajMY892.png

wKioL1nhaz2wmA4WAAAkEXWfHik445.png


 

四、部署wordpress和phpmyadmin 


下载这两个应用并导入虚拟机中,分别解压

[root@zj06 ~]# unzipwordpress-3.9-zh_CN.zip

[root@zj06 ~]# tar -zxvfphpMyAdmin-4.0.10.20.tar.gz

 

1.部署wordpress

[root@zj06 ~]# mv wordpress/var/www/vhost1/

[root@zj06 ~]# cd /var/www/vhost1/wordpress/

[root@zj06 wordpress]# mvwp-config-sample.php wp-config.php

[root@zj06 wordpress]# vim wp-config.php   ///修改配置文件

/** WordPress数据库的名称*/

define('DB_NAME', 'wpsdb');

 

/** MySQL数据库用户名 */

define('DB_USER', 'wpuser');

 

/** MySQL数据库密码 */

define('DB_PASSWORD', '123456');

 

/** MySQL主机 */

define('DB_HOST', '172.16.1.6');

 

客户端测试 wKioL1nha33DEGB0AAD2F9zmUis803.png

2. 部署phpmyadmin

[root@zj06 ~]# mkdir/var/www/vhost2/phpmyadmin

 

[root@zj06 ~]# mv phpMyAdmin-4.0.10.20-all-languages/*/var/www/vhost2/phpmyadmin/

[root@zj06 ~]# cd /var/www/vhost2/phpmyadmin/

[root@zj06 phpmyadmin]# mvconfig.sample.inc.php config.inc.php

[root@zj06 phpmyadmin]# vim config.inc.php   ///修改这个文件中的下面一行配置为主机地址

$cfg['Servers'][$i]['host'] = '172.16.1.6';

 

客户端测试

wKiom1nhbk7R4epxAAILs_RrSrw546.png

 

五、为phpmyadmin提供https

 

在主机上安装mod_ssl模块

[root@zj06 ~]# yum -y install mod_ssl

 

切换到CA目录下,生成密钥和自签证书

[root@zj06 ~]# cd /etc/pki/CA

[root@zj06 CA]# (umask 077; openssl genrsa-out private/cakey.pem 2048)

Generating RSA private key, 2048 bit longmodulus

.......+++

...................................+++

e is 65537 (0x10001)

[root@zj06 CA]# openssl req -new -x509 -keyprivate/cakey.pem -out cacert.pem

You are about to be asked to enterinformation that will be incorporated

into your certificate request.

What you are about to enter is what iscalled a Distinguished Name or a DN.

There are quite a few fields but you canleave some blank

For some fields there will be a defaultvalue,

If you enter '.', the field will be leftblank.

-----

Country Name (2 letter code) [XX]:CN

State or Province Name (full name) []:Hebei

Locality Name (eg, city) [DefaultCity]:QinHuangdao

Organization Name (eg, company) [DefaultCompany Ltd]:Link

Organizational Unit Name (eg, section)[]:ops

Common Name (eg, your name or your server'shostname) []:ca.link.com

Email Address []:admin@link.com

 

提供辅助文件

[root@zj06 CA]# touch index.txt

[root@zj06 CA]# echo 01 > serial

 

生成私钥并且生成证书签署请求

 

[root@zj06~]# mkdir -pv /etc/nginx/ssl

[root@zj06~]# cd /etc/nginx/ssl

 

[root@zj06 ssl]# (umask 077; openssl genrsa-out nginx.key 1024)   ///生成私钥

Generating RSA private key, 1024 bit longmodulus

....++++++

...............................++++++

e is 65537 (0x10001)

[root@zj06 ssl]# openssl req -new -keynginx.key -out nginx.csr   ///生成证书请求

You are about to be asked to enterinformation that will be incorporated

into your certificate request.

What you are about to enter is what iscalled a Distinguished Name or a DN.

There are quite a few fields but you canleave some blank

For some fields there will be a defaultvalue,

If you enter '.', the field will be leftblank.

-----

Country Name (2 letter code) [XX]:CN

State or Province Name (full name)[]:Hebei 

Locality Name (eg, city) [DefaultCity]:QinHuangdao

Organization Name (eg, company) [DefaultCompany Ltd]:Link

Organizational Unit Name (eg, section)[]:ops

Common Name (eg, your name or your server'shostname) []:ca.link.com

Email Address []:admin@link.com

 

Please enter the following 'extra'attributes

to be sent with your certificate request

A challenge password []:

An optional company name []:

 

签发证书

[root@zj06 ssl]# cp nginx.csr /tmp/

[root@zj06 ssl]# openssl ca -in/tmp/nginx.csr -out /etc/pki/CA/certs/nginx.crt   ///根据提示连续按两个“y”

[root@zj06 ssl]# cp/etc/pki/CA/certs/nginx.crt /etc/nginx/ssl/  ///把签署好的证书发给请求者

 

修改nginx配置文件,添加支持ssl

[root@zj06 ssl]# vim /etc/nginx/nginx.conf

server {

       listen       443 ssl;

       server_name  www2.zrs.com;

       ssl_certificate     /etc/nginx/ssl/nginx.crt;

       ssl_certificate_key /etc/nginx/ssl/nginx.key;

       ssl_session_cache   shared:SSL:1m;

       ssl_session_timeout  5m;

       ssl_ciphers  HIGH:!aNULL:!MD5;

       ssl_prefer_server_ciphers  on;

       location / {

           root   html;

           index index.php index.html index.htm;

       }

}

 

客户端测试

wKiom1nhbpaSxMc5AACciue6Q2M207.png

wKiom1nhbrTy5hEbAABJx1hn99k992.png

wKiom1nhbsiy9q-dAAB84BOckEc667.png


六、配置rewrite,即使用户使用http协议访问phpmyadmin的站点,最终也会使用https重新请求资源

 

当用户访问www2.zrs.com的时候自动跳转到https://www2.zrs.com,直接用rewrite功能即可

 

在www2.zrs.com主机的配置文件中添加rewrite即可

wKioL1niDwCQxK8HAABDqrJyKCY664.png


客户端测试

wKiom1niEcXCp5aNAABPszxuPWo302.png



本文转自 Runs_ 51CTO博客,原文链接:http://blog.51cto.com/12667170/1972297,如需转载请自行联系原作者

相关文章
|
3月前
|
缓存 Linux Shell
RHEL7部署http应用配置共享yum源
RHEL7部署http应用配置共享yum源
78 0
|
5月前
|
应用服务中间件 nginx Perl
Nginx系列教程(09) - rewrite
Nginx系列教程(09) - rewrite
60 0
|
5月前
|
JavaScript 前端开发 Serverless
在阿里云函数计算FC部署好HTTP API后
在阿里云函数计算FC部署好HTTP API后
121 5
|
1月前
|
存储 网络安全 数据安全/隐私保护
Windows Server 2019 IIS HTTPS证书部署流程详解
Windows Server 2019 IIS HTTPS证书部署流程详解
|
2月前
|
Kubernetes 容器
使用kubeadm部署k8s报错:The kubelet is not running或者level=error msg="Handler for POST /v1.43/images/create returned error: Head \"https://us-west2-dock
使用kubeadm部署k8s报错:The kubelet is not running或者level=error msg="Handler for POST /v1.43/images/create returned error: Head \"https://us-west2-dock
|
3月前
|
缓存 前端开发 应用服务中间件
https证书已经部署到宝塔,但访问网站还显示不生效问题解决
https证书已经部署到宝塔,但访问网站还显示不生效问题解决
63 0
|
4月前
|
应用服务中间件 Linux 网络安全
Linux【脚本 06】HTTPS转发HTTP安装OpenSSL、Nginx(with-http_ssl_module)及自签名的X.509数字证书生成(一键部署生成脚本分享)
Linux【脚本 06】HTTPS转发HTTP安装OpenSSL、Nginx(with-http_ssl_module)及自签名的X.509数字证书生成(一键部署生成脚本分享)
64 1
|
5月前
|
安全 数据安全/隐私保护
使用openssl 模拟ca进行证书的申请和颁发,并使用证书部署网站的安全连接访问,即https的加密通信
使用openssl 模拟ca进行证书的申请和颁发,并使用证书部署网站的安全连接访问,即https的加密通信
46 0
|
5月前
|
缓存 Ubuntu Linux
百度搜索:蓝易云【Varnish开源HTTP反向代理缓存服务器、部署安装、测试】
通过按照上述步骤部署和配置Varnish,您可以将其作为反向代理缓存服务器来提高Web应用程序的性能和响应速度。记住,在实际部署中,您可能需要进一步调整Varnish的配置以满足您的具体需求。
45 2
|
5月前
|
缓存 Linux 开发者
百度搜索:蓝易云【Varnish开源HTTP反向代理缓存服务器、部署安装、测试。】
通过以上步骤,你可以成功部署和安装Varnish,并对Web应用程序进行测试。请根据具体需求进行适当的配置和调整,以确保Varnish能够按预期工作并提升Web应用程序的性能。
33 0