From 1720151b96c9f88d4145fca21a23ab8e807d564b Mon Sep 17 00:00:00 2001 From: ahriman Date: Fri, 4 Jan 2019 04:09:50 +0000 Subject: moved bchs guide to wiki --- start.html | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 start.html (limited to 'start.html') diff --git a/start.html b/start.html deleted file mode 100644 index 17037c9..0000000 --- a/start.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - tilde.institute :: Quick-Start Guide - - - - -
- - -
-

This will be a quick-and-dirty guide to getting started with the BCHS stack. More information can be found at:

- -

tilde.institute is set up to process all files with the .cgi extension via slowcgi(8). This allows for a multitude of possibilities - any compiled language can be used to develop web applications on an OpenBSD server. It's advised to use C because of the pledge(2) and unveil(2) system calls available, which allow for restricting privileges and restricted filesystem access, respectively.

-

Keep in mind that if you don't use the previously listed kcgi/ksql/kwebapp libraries, you will need to work with HTTP's eccentricities manually. For an example, here's the Hello World code from the LearnBCHS site. And here it is running as compiled CGI here at the Tilde Institute.

-

Once you've written your software to be served via CGI, be sure to statically link the executables. Sure, there's a larger file size, but the benefits outweigh that in this case - there's no relying on what I may or may not have installed on the Tilde Institute's server. For example:

-

$ cc -static -g -W -Wall -o app.cgi app.c

-

When you've completed compilation, make sure to set permissions properly (755) and move it to the public folder in your home directory. httpd(8) is set to use index as the index file, however this can be changed to index.cgi or what-have-you by contacting ahriman via IRC.

-

~institute user xvetrd has written a more detailed example on kcgi than is provided on the library's site. It includes an example makefile as well. The KCGI Starter archive is available here. Simply curl -O https://tilde.institute/kcgi-start.tar.gz it to your home directory here on ~institute, untar, make, and make install to test the compilation. It installs to ~/public_html with the proper ownership and permissions. View the index.c source and the makefile to see what goes on under the hood! Feel free to adapt it your own projects!

-
-
- - -- cgit 1.4.1-2-gfad0