Sponsored Content
Full Discussion: BitNami MAMPStack 1.1-2
Operating Systems OS X (Apple) OS X OpenSource RSS BitNami MAMPStack 1.1-2 Post 302305432 by Linux Bot on Thursday 9th of April 2009 12:45:04 AM
Old 04-09-2009
CPU & Memory BitNami MAMPStack 1.1-2

ImageAbout BitNami MAMPStack
Allows users to have a complete PHP web development environment up and running in just minutes. BitNami MAMPStack is licensed under the terms of the Apache License 2.0, and is free for download and use. It allows users to take advantage of the stability, low cost and high performance of the AMP web development platform (Apache, MySQL, and PHP) without the hassle of integrating, configuring, and supporting their own build. BitNami MAMPStack provides an integrated package that can be used by both commercial and open source projects for rapid, consistent deployments in both development and production environments.

More from Apple...
 
Catalyst::Manual::Deployment::DevelopmentServer(3pm)	User Contributed Perl Documentation   Catalyst::Manual::Deployment::DevelopmentServer(3pm)

NAME
Catalyst::Manual::DevelopmentServer - Development server deployment The development server is a mini web server written in Perl. However, if you supply the "-f" option to the development server, it will load the higher performance Starman server, which can be used as an application server with a lightweight proxy web server at the front. Setup Start up the development server script/myapp_server.pl -p 8080 -k -f --pidfile=/tmp/myapp.pid You will probably want to write an init script to handle stop/starting the app using the pid file. Configuring Apache Make sure mod_proxy is enabled and add: # Serve static content directly DocumentRoot /var/www/MyApp/root Alias /static /var/www/MyApp/root/static ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> # Need to specifically stop these paths from being passed to proxy ProxyPass /static ! ProxyPass /favicon.ico ! ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ # This is optional if you'd like to show a custom error page # if the proxy is not available ErrorDocument 502 /static/error_pages/http502.html You can wrap the above within a VirtualHost container if you want different apps served on the same host. Other web servers The proxy configuration above can also be replicated with a different frontend server or proxy, such as varnish, nginx, or lighttpd. AUTHORS
Catalyst Contributors, see Catalyst.pm COPYRIGHT
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-20 Catalyst::Manual::Deployment::DevelopmentServer(3pm)
All times are GMT -4. The time now is 04:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy