SWI-Prolog / plweb

SWI-Prolog web server sources for www.swi-prolog.org
http://www.swi-prolog.org
16 stars 10 forks source link

The SWI-Prolog web-site

This repository contains the software of http://www.swi-prolog.org. The (wiki) content of the website and required add-ons are stored in git submodules. These must be installed separately using the command below. To install the site from scratch locally, perform the following commands:

  1. Downloading the site

       % git clone https://github.com/SWI-Prolog/plweb.git
       % cd plweb
       % git submodule update --init
  2. For a full installation, install the dynamic data. The .db files must be writeable by the server process.

    annotations.db
    Comments on web pages
    tags.db
    Tags on web pages
    openid.db
    User administration
    packs.db
    Known packages
    post.db
    News posts
    reviews.db
    Pack reviews
    download
    Points to the download directory

    Install the download descriptions by running the script install-custom

  3. Create directories for logging and pack mirrors. These directories must be writeable by the server and new directories created below must have the same permissions:

      % mkdir log pack
      % chgrp www-data log pack
      % chmod g+ws log pack

Running the site

After installation, the website may be started locally using the commands below. After that, you have access to the same content as available from https://www.swi-prolog.org, except for the download section of the website. The default port of the site is 3040, and therefore it may be accessed on http://localhost:3040/

% swipl -l load.pl
?- server.

Running as daemon using Ubuntu upstart

A good way to run the website on a Linux server is by creating a Linux container using lxc. After installing the server, you can enable it to start at boot time by copying upstart/swi-prolog.conf to /etc/init after editing it to suit your configuration requirements. By default, the server runs as user www-data, group www-data as specified in the above configuration file.

Make sure the following components are writeable to the server process. For files, this means mode 664, group www-data. For directories, this means mode 2775, group www-data.

Issues with the locally running site