The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Modwheel::Apache2 - Use Modwheel with mod_perl2

SYNOPSIS

	<VirtualHost *:80>
   		 ServerName admin.localhost
	    ErrorLog logs/error_log
	    <Location />
	        SetHandler perl-script                                                                                                             
	        PerlAuthenHandler   Modwheel::Apache2::Authen                                                                                     
	        PerlResponseHandler Modwheel::Apache2                                                                                             
	        PerlSetVar ModwheelPrefix       /opt/devel/Modwheel                                                                               
	        PerlSetVar ModwheelConfigFile   config/modwheelconfig.yml                                                                         
	        PerlSetVar ModwheelSite         Admin                                                                                             
	        PerlSetVar ModwheelFileUploads  Yes                                                                                               
	        PerlSetVar Locale               en_EN                                                                                             
	        PerlSetVar DontHandle           "rep javascript css images scriptaculous"                                                         
                                                                                                                                          
	        AuthType Basic                                                                                                                    
	        AuthName "void"                                                                                                                   
	        Require valid-user                                                                                                                
	    </Location>                                                                                                                           
	    Alias /rep /opt/devel/Modwheel/Repository                                                                                             
	    Alias /css /opt/devel/Modwheel/Templates/SimpleAdmin/css                                                                              
	    Alias /javascript /opt/devel/Modwheel/Templates/SimpleAdmin/javascript                                                                
	    Alias /scriptaculous /opt/devel/Modwheel/Templates/Scriptaculous                                                                      
	    <Directory /opt/devel/Modwheel/Repository/*/*>                                                                                        
	        Order Deny,Allow                                                                                                                  
	        Allow from all                                                                                                                    
	    </Directory>                                                                                                                          
	    <Directory /opt/devel/Modwheel/Templates/*/*>                                                                                         
	        Order Deny,Allow                                                                                                                  
	        Allow from all                                                                                                                    
	    </Directory>                                                                                                                          
	</VirtualHost>	

EXPORT

None.

HISTORY

0.01

Initial version.

SEE ALSO

The README included in the Modwheel distribution.

The Modwheel website: http://www.0x61736b.net/Modwheel/

AUTHORS

Ask Solem Hoel, ask@0x61736b.net.

COPYRIGHT, LICENSE

Copyright (C) 2007 by Ask Solem Hoel ask@0x61736b.net.

All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.