PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [Plain Text]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
302 PerlSwitches -I/home/bonnie/code 303 304 # first load the module so Apache will recognize the new directives 305 PerlLoadModule MyApache2::MyParameters 306 307 Alias /perl/ /home/bonnie/code/ 308 <Location /perl/> 309 SetHandler perl-script 310 PerlResponseHandler ModPerl::Registry 311 PerlOptions +ParseHeaders 312 Options +ExecCGI 313 Order allow,deny 314 Allow from all· 315 </Location> 316 317 PerlRequire /home/bonnie/code/startup.pl 318 319 <Location /rocks> 320 »···SetHandler perl-script 321 »···PerlResponseHandler MyApache2::Rocks 322 </Location> 323 324 325 MyParameter one two three 326 MyOtherParameter Foo 327 <Location /perl> 328 MyParameter eleven twenty 329 MyOtherParameter Bar 330 </Location> |