Contentteller 1.0.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Contentteller 1.0.0 (Default branch)
# 1  
Old 10-31-2008
Contentteller 1.0.0 (Default branch)

ImageContentteller is a content management system designed for sites of all sizes and types. It is powerful but simple to use, and search engine friendly out of the box. It has support for multiple Web sites, caching for high traffic Web sites, the ability to import and update everything from RSS feeds, POP3 email accounts, news servers, PAD, CompatDB XML files, a powerful template and style system, integration with 3rd party applications such as vBulletin, UBB.threads, phpBB 3.0, MyBB, SMF, and IP.Board 2.x, and an optional Windows installer to install Contentteller without the need of a FTP client. It is fully extensible with modules.License: GNU General Public License v3Changes:
Over 50 smaller bugfixes. Support for vBulletin 3.8. Support for UBB.threads 7.4. An option to choose the session length for admin sessions. User names and bot names have been added to the online users block.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Perlbal::Manual::WebServer(3pm) 			User Contributed Perl Documentation			   Perlbal::Manual::WebServer(3pm)

NAME
Perlbal::Manual::WebServer - Configuring Perlbal as a Web Server VERSION Perlbal 1.78. DESCRIPTION How to configure a Perlbal Web Server service. READ ME FIRST Please read Perlbal::Manual::Configuration first for a better explanation on how to configure Perlbal. This document will make much more sense after reading that. Configuring Perlbal as a Web Server By default, perlbal looks for a configuration file at /etc/perlbal/perlbal.conf. You can also point perlbal at a different configuration file with the -c flag. $ perlbal -c /home/user/perlbal.conf Here's a very simple example where we configure a simple web server that serves an index file under /tmp CREATE SERVICE perlbal_test SET role = web_server SET listen = 0.0.0.0:80 SET docroot = /tmp ENABLE perlbal_test The first line creates a service called "perlbal_test". The last line enables that service. The three parameters state - in order - that the service is a web server, that it listens on all addresses on port 80, and that its document root is "/tmp". Parameters You can set parameters via commands of either forms: SET <service-name> <param> = <value> SET <param> = <value> dirindexing = bool Show directory indexes when an HTTP request is for a directory. Warning: this is not an async operation, so will slow down Perlbal on heavily loaded sites. Default if false. docroot = directory/root Directory root for web server. enable_concatenate_get = bool Enable Perlbal's multiple-files-in-one-request mode, where a client have use a comma-separated list of files to return, always in text/plain. Useful for web apps which have dozens/hundreds of tiny css/js files, and don't trust browsers/etc to do pipelining. Decreases overall round-trip latency a bunch, but requires app to be modified to support it. See t/17-concat.t test for details. Default is false. enable_md5 = bool Enable verification of the Content-MD5 header in HTTP PUT requests. Default is true. enable_delete = bool Enable HTTP DELETE requests. Default is false. enable_put = bool Enable HTTP PUT requests. Default is false. index_files = comma-separated list of filenames Comma-separated list of filenames to load when a user visits a directory URL, listed in order of preference. Default is index.html. max_put_size = size The maximum content-length that will be accepted for a PUT request, if enable_put is on. Default is 0, which means there is no limit. min_put_directory = int If PUT requests are enabled, require this many levels of directories to already exist. If not, fail. Default is 0. server_tokens = bool Whether to provide a "Server" header. Perlbal by default adds a header to all replies (such as the web_server role). By setting this default to "off", you can prevent Perlbal from identifying itself. Default is "on". SEE ALSO Perlbal::Manual::Configuration, Perlbal::Manual::Management. perl v5.14.2 2012-02-20 Perlbal::Manual::WebServer(3pm)