]> git.pld-linux.org Git - packages/webapps.git/blob - webapps.README
e7d9127fd27db0db6c637ff5faf0720ad63154d8
[packages/webapps.git] / webapps.README
1 webapps
2
3 webapps are applications that are designed to run under webserver.
4
5 goal of this package is to have web applications work under any webserver
6 available in PLD Linux.
7
8 top directory /etc/webapps
9
10 application configuration
11 this could whatever format application uses, php script, text file, python file.
12 location: /etc/webapps/$webapp
13
14 configuration for webserver
15 this is configuration file fragment for specific webserver in webserver native
16 config file format.
17
18 location: /etc/webapps/$webapp/$httpd.conf
19 where $httpd is:
20 - apache for apache 1.x
21 - httpd for apache 2.x
22 - lighttpd for lighttpd
23
24 additionally the webserver configuration is linked to webserver config directory
25 which is
26 apache 1.x: /etc/apache/webapps.d
27 apache 2.x: /etc/httpd/webapps.d
28 lighttpd: /etc/lighttpd/webapps.d
29
30
31 each webserver may provide webserver(feature) virtual. currently used ones are:
32
33 - webserver(access)
34 module that provides possibility restrict/allow access (deny from all) to paths or urls
35 apache1/apache2.0/lighttpd: mod_access
36 apache2.2: mod_authz_host
37
38 - webserver(alias)
39 module that provides possibility to map local paths to url aliases
40 apache1/apache2.x/lighttpd: mod_alias
41
42 - webserver(auth)
43 module that provides way to restrict access by password
44 apache1/apache2.x/lighttpd: mod_auth
45
46 - webserver(indexfile)
47 module that provides way to handle "directory" urls (urls ending with slash)
48 apache1/apache2.x: mod_dir
49 lighttpd: mod_indexfile
50
51 - webserver(cgi)
52 module that provides way CGI interface
53 apache1/apache2.x/lighttpd: mod_cgi
This page took 0.063241 seconds and 2 git commands to generate.