杜郎俊赏 - dujun.io

开源实例之ZPanel

zpanel-example封面
前言 ZPanel is an open-source web hosting control panel written in PHP and is compatible with Microsoft Windows and POSIX (Linux, UNIX, MacOSX and the BSD's). ZPanel 是 PHP 语言开发的,基于 LNMP 环境的企业级 WEB 托管控制面板,支持Linux、UNIX、MacOS 和Windows。 实例地址 https://zpanel.dujun.eu.org 实例配置 配置 描述 系统 Ubuntu 12.04 程序 ZPanel 10.1.3 实例部署 ZPanel 已停止维护,不建议用于生产环境。对源码感兴趣的可以前往仓库https://github.com/zpanel/zpanelx。 本实例基于第三方 Docker...

2023-03-03

开源实例之Froxlor

froxlor-example封面
前言 Froxlor is the lightweight server management software for your needs. Froxlor 是一款基于 LNMP 环境开发的 WEB 控制面板,非常轻量,使用简单。 实例地址 https://froxlor.dujun.eu.org 实例配置 配置 描述 系统 Debian 服务端 PHP 7.4 数据库 MariaDB 10.5 服务器 Nginx 程序 Froxlor 2.0.12 实例部署 权限要求 具有系统读写权限 已安装 PHP(推荐 PHP 7.4) 已安装数据库,如 MySQL 已安装 Nginx 域名解析 以 Nginx 为例,配置 url 重写: if (!-e $request_filename) { rewrite ^/(.*) /index.php/$1 last; } 安装程序 官网地址:h...

2023-02-27

c37b66a8-e2b8-5eae-a0d3-3220a1c397f8封面
服务器小主机刚好放在边柜和桌面的空隙,可太棒了。公司的宽带比家里好多了,园区停电的几率也比家里小得多,以后就在这里服役啦。

2023-02-27

开源实例之Expose

expose-example封面
前言 本篇介绍使用 Expose 实现内网穿透。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。 Expose 介绍 Expose is a tunnel application that allows you to share your local sites and applications with others on the internet. It is open source, written in PHP and the best alternative to ngrok for PHP developers. Expose 用 PHP 语言编写,功能与 ngrok 类似。 仓库地址:https://github.com/beyondcode/expose 官网地址:https://expose.dev Expose 部署 环境安装 需要先安装 PHP 8.1+...

2023-02-27

开源实例之rathole

rathole-example封面
前言 本篇介绍使用 rathole 实现内网穿透。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。 rathole 介绍 A lightweight and high-performance reverse proxy for NAT traversal, written in Rust. An alternative to frp and ngrok, can help to expose the service on the device behind the NAT to the Internet, via a server with a public IP. rathole 支持配置文件热重载(hot reload),动态修改端口转发服务。作者宣称,rathole 在高并发情况下比 frp 表现更好,能提供更大的带宽,内存占用更少。 仓库地址:https://githu...

2023-02-27

开源实例之WireGuard

wireguard-example封面
前言 本篇介绍 WireGuard 及其用于内网穿透的实例。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。 WireGuard 介绍 WireGuard is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running o...

2023-02-25

开源实例之ngrok

ngrok-example封面
前言 在内网穿透的专题里,必须有 ngrok 的名字,它有广泛的知名度和众多的衍生品。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。 ngrok 介绍 ngrok is a reverse proxy that creates a secure tunnel from a public endpoint to a locally running web service. ngrok captures and analyzes all traffic over the tunnel for later inspection and replay. ngrok 是一个使用go语言编写的反向代理软件,可以在公共端和本地 web 服务之间建立安全通道,捕获和分析所有通道上的流量。 ngrok 1.x 开源,但存在严重问题,已不再维护;ngrok 2.x 是商业软件,未开源,但提供一定...

2023-02-25

开源实例之NPS

nps-example封面
前言 本篇介绍用 NPS 搭建 ssh、web 内网穿透的方法。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。 NPS介绍 NPS is a lightweight, high-performance, powerful intranet penetration proxy server, with a powerful web management terminal. NPS是一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等,并带有功能强大的web管理端。 NPS 比 frp 多了 web 管理后台,配置更加方便,不必每次修改都重启服务。 仓库地址:https://github.com/ehang-io/nps...

2023-02-22

开源实例之frp

frp-example封面
前言 frp(fast reverse proxy)是一款知名的开源内网穿透软件。本篇介绍用 frp 搭建 ssh、web 内网穿透的方法。 内网穿透介绍 内网穿透,也即 NAT(Network Address Translation,网络地址转换)穿透(NAT traversal),进行 NAT 穿透是为了使具有某一个特定源 IP 地址和源端口号的数据包不被 NAT 设备屏蔽而正确路由到内网主机。 简单来说,内网穿透就是内网主机通过NAT与公网建立TCP/UDP连接,实现接收/发送公网数据包。 《开源实例之自建服务器下篇:工控机部署》一文中提到了内网穿透的应用,这就是内网穿透的典型使用场景,通过内网穿透将配置较高的内网服务器“映射”到公网提供服务,而配置较低的公网服务器只需消耗流量。 frp介绍 frp is a fast reverse proxy to help you expose...

2023-02-21

淘淘学轮滑

taotao-is-learning-roller-skating封面
前段时间淘淘突然主动说想学轮滑,带她去上了体验课,确实非常喜欢,下课了还恋恋不舍。老师夸她很有天赋,也难得她有主动学习一个技能的热情,果断报了班(¥2780/32节课),给淘淘买了轮滑鞋(¥780)。后来又联系老师给我自己买了一双(¥380),打算“沉浸式”陪伴淘淘学习轮滑。 我在高中时玩过老式双排的旱冰鞋,后来在大学加入了轮滑社团,偶尔参加过几次“刷街”活动。淘淘喜欢轮滑不知道有没有遗传的因素。没想到年轻时不经意的爱好,现在还派上了用场。 今天是淘淘第三次上课,已经可以自己滑了,很棒。现场家长只有我是本人也穿着轮滑鞋的。有个小朋友还过来问我是哪个老师,我说我是家长不是老师,小朋友很惊讶,估计也很羡慕别人的爸爸可以陪孩子一起玩。哈哈。

2023-02-20

分页: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109