forked from 3wordchant/capsul-flask
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| 
 | |
| {% block title %}FAQ{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|   <div class="row full-margin"><h1>Frequently Asked Questions</h1></div>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block subcontent %}
 | |
| <p>
 | |
|  <ul>
 | |
|    <li>
 | |
|      Which instance type should I buy?
 | |
|      <p>There are no hard rules for this sort of thing, but here are some guidelines:</p>
 | |
|      <p>f1-xs: blog, vpn, bot, cgit</p>
 | |
|      <p>f1-s: a bot, owncloud, gitea, popular blog</p>
 | |
|      <p>f1-m: docker host, build system</p>
 | |
|      <p>f1-l: large webservice, rotund java app</p>
 | |
|      <p>f1-x: gitlab (wow such memory very devops</p>
 | |
|      <p>f1-xx: something gargantuan</p>
 | |
|    </li>
 | |
|    <li>
 | |
|      How do I log in?
 | |
|      <p>ssh to the ip provided to you using the cyberian user.</p>
 | |
|      <pre class='code'>$ ssh cyberian@1.2.3.4</pre>
 | |
|    </li>
 | |
|    <li>
 | |
|      How do I change to the root user?
 | |
|      <p>The cyberian user has passwordless sudo access by default. This should work:</p>
 | |
|      <pre class='code'>
 | |
| # Linux
 | |
| $ sudo su -
 | |
| 
 | |
| # OpenBSD
 | |
| $ doas su -</pre>
 | |
|    </li>
 | |
|    <li>
 | |
|      Do you offer reverse DNS?
 | |
|      <p>We do, but right now it's a manual process. Shoot us an email and we'll get it done.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|     What if I don't pay / don't maintain my payments?
 | |
|     <p>Your VM will eventually be deleted.
 | |
|        Capsul will send you a few inoffensive reminders as that termination date approaches.
 | |
|     </p>
 | |
|    </li>
 | |
|    <li>
 | |
|     Besides my virtual machines and payments, what information do you keep about me?
 | |
|      <p>We associate an email address with every VM so that we can track payment and respond to support requests.</p>
 | |
|      <p>If you pay with a credit card, Stripe stores some additional details about you that we literally cannot delete.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|      What can I do with my VM?
 | |
|      <p>Make it into a mailserver, a bitcoin miner, a VPN host, whatever you'd like.</p>
 | |
|      <p>Our systems exist within the USA, and as such we are bound by US law.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|      Can you recover my passwords/insert new keys?
 | |
|      <p>Can we? Technically yes. Will we? No, never. It would violate the trust that our users have in us.
 | |
|      We have no interest in touching client VMs after they're running.
 | |
|      We promise to keep your machines running smoothly.
 | |
|      If you lose access to your VM, that's on you.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|      Do you offer refunds?
 | |
|      <p>Not now, but email us and we can probably figure something out.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|     Where do the VMs run? Is it on a machine that you guys own/control?
 | |
|      <p>Capsul runs on a server named Baikal which Cyberia built from scratch & mailed to a datacenter
 | |
|       in Georgia called CyberWurx. CyberWurx staff installed it for us in a rack space that
 | |
|       Cyberia pays for. </p>
 | |
|    </li>
 | |
|    <li>
 | |
|      Do you offer support?
 | |
|      <p>Yep, see <a href="/support">our support page</a>.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|      Do you have an SLA?
 | |
|      <p>No, but we normally respond pretty quickly.</p>
 | |
|    </li>
 | |
|    <li>
 | |
|     Will you implement feature X?
 | |
|     <p>Maybe! Email <a href="mailto:ops@cyberia.club">ops@cyberia.club</a> and ask us about it.</p>
 | |
|    </li>
 | |
|  </ul>
 | |
| </p>
 | |
| 
 | |
| {% endblock %}
 | |
| 
 | |
| {% block pagesource %}/templates/faq.html{% endblock %}
 | |
| 
 |