index.html (2266B)
1 <!DOCTYPE html> 2 <html lang="en_GB"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>ESSE</title> 7 <link rel="stylesheet" href="main.css"> 8 </head> 9 10 <body> 11 <header> 12 <h1>Welcome to ESSE</h1> 13 <pre><a href="/index.html">Home</a> | <a href="/rules.html">Rules</a></pre> 14 <hr> 15 </header> 16 17 <main> 18 <section> 19 <h2>What is ESSE?</h2> 20 21 <p> 22 ESSE stands for the <strong>Experimental Shared System Environment</strong>. 23 It is a place where myself and a select few people can mess around with, 24 break, and fix things. Overall, it is a good time. 25 </p> 26 27 </section> 28 29 <hr> 30 31 <section> 32 <h2>ESSE History</h2> 33 34 <ul> 35 <li> 36 Early 2024: VPS is created as 37 <a href="https://shipwreckt.co.uk">Shipwreckt</a>'s private server. 38 </li> 39 40 <li> 41 2026-07-07: The old private VPS is re-imaged and the shared VPS is 42 set up for use by 43 <a href="/~gositi">Gositi</a> and 44 <a href="/~shipwreckt">Shipwreckt</a>. 45 </li> 46 47 <li> 48 2026-07-10: Shipwreckt tightens SSH security. 49 </li> 50 51 <li> 52 2026-07-10: Gositi gets lighttpd up and running, after which 53 Shipwreckt accidentally ruins the home page! 54 </li> 55 56 <li> 57 2026-07-11: esse-box.uk is purchased for the server. 58 Shipwreckt.co.uk is also moved over. Both now use HTTPS. 59 </li> 60 <li> 61 2026-07-28: Shipwreckt setup the PGP server 62 </li> 63 </ul> 64 </section> 65 66 <hr> 67 68 <section> 69 <h2>Projects in the Works</h2> 70 71 <ul> 72 <li>Git web frontend</li> 73 <li>Bulletin board</li> 74 </ul> 75 </section> 76 77 <hr> 78 79 <section> 80 <h2>ESSE Users</h2> 81 82 <p><strong>*</strong> = Sudoer</p> 83 84 <ul> 85 <li><a href="/~shipwreckt">Shipwreckt *</a></li> 86 <li><a href="/~gositi">Gositi *</a></li> 87 </ul> 88 89 90 <hr> 91 <h2>ESSE services</h2> 92 <ul> 93 <li><a href="https://pgp.esse-box.uk">PGP server</a></li> 94 </ul> 95 </section> 96 </main> 97 98 <footer> 99 <hr> 100 <p>Languages: <a href="SV/index.html">SV</a></p> 101 <pre>Email: <a href="mailto:contact@esse-box.uk">contact@esse-box.uk</a> © 2026 ESSE</pre> 102 </footer> 103 </body> 104 </html> 105