74 lines
2.8 KiB
HTML
74 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FAQ Page</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
.faq-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.faq-item {
|
|
margin-bottom: 20px;
|
|
}
|
|
.question {
|
|
font-weight: bold;
|
|
color: #0066cc;
|
|
}
|
|
.answer {
|
|
color: #444;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Frequently Asked Questions</h1>
|
|
|
|
<ul class="faq-list">
|
|
<li class="faq-item">
|
|
<div class="question">How do you setup/activate free accounts?</div>
|
|
<div class="answer">
|
|
<ol>
|
|
<li>
|
|
Create two subdomains (ie. www.sudomain.iofree.info and subdomain.iofree.info) in Cloudflare only If the user didn't provide a domain (in this case BYOD. ie. Bring your own domain). Under zone 'iofree.info'.<br>
|
|
NOTE: Make sure to toggle off proxied in Cloudflare.
|
|
</li>
|
|
<li>
|
|
Create a new client, under 'Client', and fill out required fields. Remember to set the country for easy identification.
|
|
NOTE: Don't forget the Limits tab and set the master template to Free!
|
|
NOTE: Don't forget to toggle of Auto Subdomain for iofree.info domains!
|
|
</li>
|
|
<li>
|
|
Create website at <a href="https://freecp1.iocloudsolutions.net:8080">https://freecp1.iocloudsolutions.net:8080</a>. Under sites.<br>
|
|
<ol>
|
|
<li>Set Auto-Subdomain to None if using free domain. Ie, iofree.info</li>
|
|
<li>Set PHP to enable and to version 8.1 (That has mail function disabled)</li>
|
|
<li>The domain field could be either BYOD or subdomain created above. Ie. bugzbunny.iofree.info.</li>
|
|
<li>AFTER the site has been created and saved, Let's Encrypt can be enabled!.</li>
|
|
</ol>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</li>
|
|
<li class="faq-item">
|
|
<div class="question">Where can I find the TODO list for staff?</div>
|
|
<div class="answer">You'll found it <a href="todo.html">here</a>.</div>
|
|
</li>
|
|
<li class="faq-item">
|
|
<div class="question">Where does it come from?</div>
|
|
<div class="answer">Contrary to popular belief, Lorem Ipsum is not simply random text.</div>
|
|
</li>
|
|
<!-- Add more FAQ items as needed -->
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|