Mercurial Hosting > luan
annotate website/src/hosting.html.luan @ 1735:4b56eff90040
add hosting.html
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 02 Oct 2022 17:32:00 -0600 |
parents | website/src/tutorial.html.luan@500c706ed4ea |
children | c7d79ba1c476 |
rev | line source |
---|---|
1651 | 1 local Luan = require "luan:Luan.luan" |
2 local error = Luan.error | |
3 local Io = require "luan:Io.luan" | |
4 local Http = require "luan:http/Http.luan" | |
5 local Shared = require "site:/lib/Shared.luan" | |
6 local head = Shared.head or error() | |
1735 | 7 local header = Shared.docs_header or error() |
1651 | 8 |
9 | |
10 return function() | |
11 Io.stdout = Http.response.text_writer() | |
12 %> | |
1216 | 13 <!doctype html> |
391
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
387
diff
changeset
|
14 <html> |
1651 | 15 <head> |
16 <% head() %> | |
1735 | 17 <title>Luan Web Hosting</title> |
1651 | 18 </head> |
19 <body> | |
1735 | 20 <% header() %> |
1651 | 21 <div content> |
1324
1660136ac451
website - remove Shared.luan
Franklin Schmidt <fschmidt@gmail.com>
parents:
1323
diff
changeset
|
22 |
1735 | 23 <h1>Luan Web Hosting</h1> |
382 | 24 |
1735 | 25 <p>Luan is currently mostly used for building websites. Luan <a href="https://hg.reactionary.software/repo/luan/file/tip/host">includes</a> a web hosting solution. You can install this for your own use, or you can just use our web host for free. I will explain how to use our web host.</p> |
382 | 26 |
1735 | 27 <p>Start by creating an empty working directory. In this working directory, create a sub-directory called <b>src</b>. This will contain the website. Now in the working directory, make shell script called <b>serve.sh</b> containing:</p> |
1325
28c1fc6d9d29
website - make docs html
Franklin Schmidt <fschmidt@gmail.com>
parents:
1324
diff
changeset
|
28 <pre> |
1735 | 29 luan luan:http/serve.luan src |
562
7cc9d4a53d3b
remove SimplyHTML from documentation
Franklin Schmidt <fschmidt@gmail.com>
parents:
512
diff
changeset
|
30 </pre> |
382 | 31 |
1735 | 32 <p>Run this script and go to <a href="http://localhost:8080/">http://localhost:8080/</a> in your browser. You should see the empty <b>src</b> directory. Now put some HTML file in <b>src</b>. You should see it in the browser. If you click on the HTML file, it should render. If you want HTML for the home page, use <b>index.html</b>. To use Luan to generate HTML, use whatever.html.luan as described the <a href="tutorial.html">Luan tutorial</a>.</p> |
382 | 33 |
1735 | 34 <p>Suppose your domain is <b>www.whatever.com</b>. Our web host is <b>s1.luan.software</b>. So create a DNS CNAME record pointing <b>www.whatever.com</b> to <b>s1.luan.software</b>. Now make a shell script in the working directory called <b>push.sh</b> containing:</p> |
1325
28c1fc6d9d29
website - make docs html
Franklin Schmidt <fschmidt@gmail.com>
parents:
1324
diff
changeset
|
35 <pre> |
1735 | 36 luan luan:host/push.luan www.whatever.com password src |
1325
28c1fc6d9d29
website - make docs html
Franklin Schmidt <fschmidt@gmail.com>
parents:
1324
diff
changeset
|
37 </pre> |
1735 | 38 <p>Replace "password" with whatever password you want.</p> |
382 | 39 |
1735 | 40 <p>Running this script will create your website. Running it again will update your website.</p> |
382 | 41 |
1735 | 42 <p>If you are wondering why we offer this for free, it is because I am certain that modern scum (members of modern culture) will never use it. Modern scum hate everything that is simple and good, and love overcomplicated crap. So the free Luan hosting service will never have significant use, so I can easily offer it for free.</p> |
382 | 43 |
1651 | 44 </div> |
45 </body> | |
391
2f5cc9c2cbf0
replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
Franklin Schmidt <fschmidt@gmail.com>
parents:
387
diff
changeset
|
46 </html> |
1651 | 47 <% |
48 end |