前言
上一篇,笔者自己使用docker搭建了php+mysql+nginx的环境,这次我们来使用docker来搭建博客。
Ghost介绍
可以用来搭建博客的的博客程序有很多,这里我了ghoost,以下来自百度百科
Ghost 是一款个人博客程序,它是使用Node.js语言开发的,可以使用MySQL、SQLite或者PostgreSQL来存储数据。
通过Docker安装Ghost
首先去docker的镜像官网找到ghost的镜像,地址如下:
https://hub.docker.com/_/ghost
然后根据官方镜像的教程,输入命令
docker run -d --name some-ghost -e url=http://localhost:3001 -p 3001:2368 ghost
这里我们将容器的端口映射到了主机的3001端口,这部完成后,我们就可以通过主机ip+端口号
访问我们的博客了。例如笔者的主机ip是106.53.235.223,那么我们就可以到浏览器输入106.53.235.223:3001访问生成的博客了。
nginx设置ghost博客系统的反向代理
如果我们想通过域名的方式,直接访问博客,但又不想占用80的端口,那么我就需要通过nginx设置反向代理了。去到nginx的配置文件,增加以下配置。
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header HOST $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://106.53.235.223:3001;
proxy_redirect off;
}
需要注意的是,因为ngnix也是一个容器,如果将proxy_pass的地址写成http://127.0.0.01将会找不到我们的博客地址,因为这时候的127.0.0.1指的是容器的,而不是宿主机。
配置https
在腾讯云配置一个blog.mapleye1994.com的ssl证书后,下载上传到服务器后,在nginx的配置文件配置后,就可以在浏览器输入以上地址就可以访问了。
server {
#server_name ${NGINX_HOST};
server_name blog.mapleye1994.com;
index index.php index.html;
listen 443 ssl;
# fastcgi_param HTTPS on;
ssl on;
ssl_certificate /etc/ssl/1_blog.mapleye1994.com_bundle.crt;
ssl_certificate_key /etc/ssl/2_blog.mapleye1994.com.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/html/public;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header HOST $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://106.53.235.223:3001;
proxy_redirect off;
}
}
server {
listen 80;
server_name blog.mapleye1994.com;
return 301 https://$host$request_uri;
}
总结
有了docker后,想要搭建环境非常的方便,而且官方也有提供文档及使用说明。最后放一下搭建成功后的博客访问地址blog.mapleye1994.com。