Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

新增一个每夜构建的镜像地址 #43

Open
ykfq opened this issue Jan 21, 2019 · 5 comments
Open

新增一个每夜构建的镜像地址 #43

ykfq opened this issue Jan 21, 2019 · 5 comments

Comments

@ykfq
Copy link

ykfq commented Jan 21, 2019

本人使用 docker 在 aws 上运行了一个 gopl-zh 容器,设置每晚 2:00 克隆仓库并构建一次,力争将最新的文档呈现在大伙儿面前。
镜像地址:https://book.itsfun.top/gopl-zh

  • 使用 https
  • 每夜构建,保证最新
  • 域名使用 cloudflare CDN 加速,国内无缝访问

项目地址:https://github.com/ykfq/nginx-gopl-zh
有问题欢迎指正,也欢迎大家提 issue。

@cocos543
Copy link

👍

@ykfq
Copy link
Author

ykfq commented Jan 25, 2019

为了达到更好的阅读效果,我在 Tampermonkey 中增加了一个本地脚本

// ==UserScript==
// @name         Better gopl read
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  调整 Gopl 页面宽度及字体大小,以便更加适合阅读。
// @author       High Jiang
// @match        *://book.itsfun.tk/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = '.page-inner{ max-width: 1080px; width: 100%; font-size: 16px}';
    document.head.appendChild(style);

})();

@haytoo1
Copy link

haytoo1 commented Mar 18, 2019

thanks

@ykfq
Copy link
Author

ykfq commented Dec 7, 2019

更新: 最新构建镜像地址请使用 https://book.itsfun.top/gopl-zh

之前的域名 itsfun.tk 是在 freenom 上免费申请的,一年免费期明明要到明年4月份才到,但是最近被莫名删除了,已经是第二次遇到,再也不敢用了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@cocos543 @haytoo1 @ykfq and others