Skip to content

Commit

Permalink
Spill new stuff for subscribers
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Aug 17, 2023
1 parent d81de51 commit 21696a4
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 11 deletions.
3 changes: 2 additions & 1 deletion docs/features/security.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ It kills with `SIGKILL` when following criteria met:

+ It's a user process, not a root or a system daemon.
+ Running for longer than 3 hours, or:
+ Background processes (detached from daemon/SSH)
+ Background processes
+ Detached from nginx/daemon/ssh
+ User doesn't have any active SSH session.
2 changes: 1 addition & 1 deletion docs/integration/self-host.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ ExecStartPre=ipset -! create whitelist-v6 hash:ip family inet6
```

```ini title="/etc/default/earlyoom"
EARLYOOM_ARGS="-r 0 -m 4 -M 409600 -g --prefer '^(cloudflared|node|python|php)' --avoid '^(dnf|mariadbd|postgres|named|nginx|polkitd|do-agent|sshd)$'"
EARLYOOM_ARGS="-r 0 -m 4 -M 409600 -g --prefer '^(node|python|ruby|java)' --avoid '^(dnf|mariadbd|postmaster|named|nginx|polkitd|do-agent|sshd|php-fpm)$'"
```

```ini title="/var/spool/cron/root"
Expand Down
6 changes: 3 additions & 3 deletions src/components/home/Home5.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ export default function Home5({ title }) {
</div>
<h2>Free Domain</h2>
<p>
Built-in <code>*.domcloud.io</code> domain for free.
Use <code>*.domcloud.io</code> domain for free.
</p>
</div>
<div className="feature col">
<div className="feature-icon badge badge--primary">
<FaLock />
</div>
<h2>Free TLS Certificates</h2>
<h2>Built-in Security</h2>
<p>
Automatically enable HTTPS with <b>Let's Encrypt</b>.
HTTPS, Firewall, Bot Protection for free.
</p>
</div>
</div>
Expand Down
39 changes: 33 additions & 6 deletions src/pages/price.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import FaLock from '@fortawesome/fontawesome-free/svgs/solid/lock.svg';
import FaBrief from '@fortawesome/fontawesome-free/svgs/solid/briefcase.svg';
import FaUsers from '@fortawesome/fontawesome-free/svgs/solid/users.svg';
import FaAtlas from '@fortawesome/fontawesome-free/svgs/solid/atlas.svg';
import FaArchive from '@fortawesome/fontawesome-free/svgs/solid/archive.svg';
import FaCartPlus from '@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg';
import FaQuestion from '@fortawesome/fontawesome-free/svgs/solid/question.svg';
import FaBolt from '@fortawesome/fontawesome-free/svgs/solid/bolt.svg';
import './price.css';
import Home7 from "../components/home/Home7";
import Home5 from "../components/home/Home5";
Expand Down Expand Up @@ -73,7 +75,7 @@ export default function Pricing() {
<FaBrief /> <span>Maximum of <b>10 instances</b></span>
</div>
<div className="item">
<FaUsers /> <span>Team of <b>4 users</b></span>
<FaUsers /> <span>Team of <b>3 users</b></span>
</div>
</div>
</div>
Expand All @@ -100,7 +102,7 @@ export default function Pricing() {
<FaBrief /> <span>Maximum of <b>25 instances</b></span>
</div>
<div className="item">
<FaUsers /> <span>Team of <b>10 users</b></span>
<FaUsers /> <span>Team of <b>5 users</b></span>
</div>
</div>
</div>
Expand All @@ -124,11 +126,11 @@ export default function Pricing() {
</div>
<div className="feature premium col">
<div className="feature-icon badge">
<FaCartPlus />
<FaArchive />
</div>
<h2>Add-ons Billing</h2>
<h2>Backup Files</h2>
<p>
No sudden over-usage shutdowns (coming soon).
Backup your files and data at no additional cost
</p>
</div>
<div className="feature premium col">
Expand All @@ -137,7 +139,32 @@ export default function Pricing() {
</div>
<h2>Prioritized Support</h2>
<p>
We'll seriously consider your support request.
We'll seriously supporting your requests
</p>
</div>
<div className="feature premium col">
<div className="feature-icon badge">
<FaUsers />
</div>
<h2>Teams</h2>
<p>Multiple users manage websites together</p>
</div>
<div className="feature premium col">
<div className="feature-icon badge">
<FaCartPlus />
</div>
<h2>Addon Billing</h2>
<p>
Purchase additional resources at any time
</p>
</div>
<div className="feature premium col">
<div className="feature-icon badge">
<FaBolt />
</div>
<h2>Higher Power</h2>
<p>
Better compute power for all users
</p>
</div>
</div>
Expand Down

0 comments on commit 21696a4

Please sign in to comment.