CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 15 Aug 2025 00:16:59 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090806021412
location: https://web.archive.org/web/20090806021412/https://github.com/klacke/yaws/tree/master
server-timing: captures_list;dur=0.688054, exclusion.robots;dur=0.035149, exclusion.robots.policy;dur=0.020715, esindex;dur=0.010092, cdx.remote;dur=10.013140, LoadShardBlock;dur=222.080912, PetaboxLoader3.datanode;dur=97.547361, PetaboxLoader3.resolve;dur=90.053824
x-app-server: wwwb-app201
x-ts: 302
x-tr: 301
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 15 Aug 2025 00:17:00 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Thu, 06 Aug 2009 02:14:11 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 982ms
x-archive-orig-etag: "c06dec3cea14b65b8e967281d4ac31a8"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 44069
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 06 Aug 2009 02:14:12 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 22 Apr 2009 01:05:24 GMT", ; rel="prev memento"; datetime="Tue, 14 Jul 2009 04:18:02 GMT", ; rel="memento"; datetime="Thu, 06 Aug 2009 02:14:12 GMT", ; rel="last memento"; datetime="Thu, 06 Aug 2009 02:14:12 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_11_20090805205811_crawl103.gpg-c/51_11_20090806021221_crawl101.arc.gz
server-timing: captures_list;dur=0.716401, exclusion.robots;dur=0.031920, exclusion.robots.policy;dur=0.018945, esindex;dur=0.013981, cdx.remote;dur=140.422581, LoadShardBlock;dur=544.942096, PetaboxLoader3.resolve;dur=542.751494, PetaboxLoader3.datanode;dur=133.964588, load_resource;dur=224.618316
x-app-server: wwwb-app201
x-ts: 200
x-tr: 992
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
klacke's yaws at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Yaws webserver edit |
Homepage: | https://yaws.hyber.org edit |
Public Clone URL: |
git://github.com/klacke/yaws.git
Give this clone URL to anyone.
git clone git://github.com/klacke/yaws.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:klacke/yaws.git
|
yaws /
README
This is yaws, a webserver for dynamic content written in Erlang. To build and install 1. Get and install an erlang system (https://www.erlang.org) 2. ./configure --prefix=/usr/local This will install everything under /usr/local including var files in /usr/local/var/run/yaws and etc files in /usr/local/etc/yaws.* A plain ./configure will install executables under /usr/local/bin and libs in /usr/local/lib/yaws etc and var files will end up under /usr/local/etc and /usr/local/var Note: We can also change the target directory for etc and var directories by using: --localstatedir=DIR for files that should go in /var --sysconfdir=DIR for files that should go in /etc --disable-pam If we for some reason do not want pam support --with-extrainclude=DIR Will add DIR to the include path May be useful if e.g. pam is installed somewhere where its usually not found --with-defaultcharset=String Will set the default charset used in generated page headers. Usually never needed. This way you can precisely control where you install Yaws (This is usefull for computers where you do not have right access to the standard systemdirs). For example: ./configure --prefix=/home/install/yaws --localstatedir=/home/install/yaws/var --sysconfdir=/home/install/etc 2b. Note to packagers (rpm, deb ...) All install targets support the DESTDIR variable. Thus, if we do ./configure --prefix=/usr; make we can subsequently do: DESTDIR=/foo/bar make install All yaws files will be installed under DESTDIR, but all code will assume yaws should be installed under /usr 3. make This will build the system make docs (Optionnal) You can issue this command if you want to build Yaws documentation. make local_install and perform something we call a local install. It will create an executable script in the $HOME/bin directory and a config file in $HOME/yaws.conf. This is for developers only 4. To test the build, Start as bin/yaws -i This will start a webserver at https://0.0.0.0:8000 Terminate through ^C or > init:stop() 5. as root make install 6. as root start as /usr/local/bin/yaws -i (this starts an interactive system) 7. This will create a webserver at https://${host} and one at https://${host} 8. as root edit /usr/local/etc/yaws/yaws.conf 9. Create content in /usr/local/var/yaws 10a. Start as /usr/local/bin/yaws --daemon --heart This will start a daemon (--daemon) which will be autorestarted when/if it crashes or hangs (--heart) Also, for most unices, we create proper start scripts in /etc/init.d (sysconfdir) 10b. Or start interactive system as /usr/local/bin/yaws -i 11. Example: Here is how I compile/start the yaws system that runs at https://yaws.hyber.org (Ubuntu server system) # ./configure --sysconfdir=/etc # make && make install # /etc/init.d/yaws start
This feature is coming soon. Sit tight!