使用Docker部署PDF多功能工具Stirling-PDF

1.服务器上安装docker

安装比较简单,这种安装的Docker不是最新版本,不过对于学习够用了,依次执行下面命令进行安装。

bash 复制代码
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker

查看是否安装成功

bash 复制代码
$ docker -v
Docker version 17.12.1-ce, build 7390fc6

Docker启动与停止

安装完成Docker后,默认已经启动了docker服务,如需手动控制docker服务的启停,可执行如下命令:

启动docker

bash 复制代码
sudo service docker start

停止docker

bash 复制代码
sudo service docker stop

重启docker

bash 复制代码
sudo service docker restart

或者是

bash 复制代码
systemctl restart docker

2、配置服务器的nginx反向代理,使用域名访问。

我使用的是腾讯云服务器。首先要确认服务器上面已经开通8080这个端口。

nginx配置文件内容如下:

bash 复制代码
#user  nobody;
worker_processes  auto;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;

    gzip  on;

    server {
        listen       80;
        server_name  xxxxxxx.com;  # 这里是你的域名

        client_max_body_size 200M;  # 修改文件大小的限制,你的网站能够处理的文件的最大限制

        #charset koi8-r;
        #access_log  logs/host.access.log  main;

        location / {
            #把http的域名请求转成https
            return 301 https://$host$request_uri;
        }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

    # HTTPS server
    server {
        listen       443 ssl;
        server_name  xxxxxxx.com;  # 这里是你的域名

        client_max_body_size 200M;  # 修改文件大小的限制,你的网站能够处理的文件的最大限制

        # 支持跨域
        add_header 'Access-Control-Allow-Origin' '*' always;
        add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,access-control-allow-origin,Token,Authorization';
        add_header 'Access-Control-Allow-Methods' 'GET,POST,OPTIONS,PUT,DELETE,HEAD,PATCH';
        add_header 'Access-Control-Allow-Credentials' 'true';

        ssl_certificate      xxxxxxxxxxxxxx;  # 这里是你的域名证书文件
        ssl_certificate_key  xxxxxxxxxxxxxx;  # 这里是你的域名证书文件

        # ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
        ssl_protocols TLSv1.2 TLSv1.3;

        #请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
        ssl_prefer_server_ciphers on;

        location / {
            proxy_pass http://127.0.0.1:8080;     # 这里是8080端口
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_ssl_verify off;
            proxy_ssl_session_reuse on;
        }
    }
}

3、拉取Stirling-PDF的docker镜像

bash 复制代码
docker pull https://hub.docker.com/r/frooodle/s-pdf

4、执行docker命令创建容器

bash 复制代码
docker run -p 8080:8080 frooodle/s-pdf

5、在浏览器上面输入你的域名就可以访问了。

相关推荐
程序员 小柴1 小时前
docker的与使用
java·docker·eureka
ghostwritten1 小时前
Docker Registry Clean
运维·docker·容器
ElasticPDF-新国产PDF编辑器2 小时前
Angular 项目 PDF 批注插件库在线版 API 示例教程
前端·pdf·angular.js
宋冠巡2 小时前
Windows安装Docker(Docker Desktop)
windows·docker·容器
夏天想2 小时前
vant4+vue3上传一个pdf文件并实现pdf的预览。使用插件pdf.js
开发语言·javascript·pdf·vant
阿噜噜小栈4 小时前
最新国内可用的Docker镜像加速器地址收集
运维·笔记·docker·容器
ElasticPDF-新国产PDF编辑器4 小时前
React 项目 PDF 批注插件库在线版 API 示例教程
react.js·pdf·json
海鸥815 小时前
podman和与docker的比较 及podman使用
docker·容器·podman
hello_simon7 小时前
在线小白工具,PPT转PDF支持多种热门工具,支持批量转换,操作简单,高效适合各种需求
pdf·html·powerpoint·excel·pdf转html·excel转pdf格式
zyk_52012 小时前
Docker desktop如何汉化
运维·docker·容器