mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
0f90074f91
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
--- tools/httpd_conf.orig 2017-04-03 21:14:00.521107366 -0500
|
|
+++ tools/httpd_conf 2017-04-03 21:16:07.783196402 -0500
|
|
@@ -12,18 +12,19 @@
|
|
# Directives to add to your Apache conf file to allow use of AWStats as a CGI.
|
|
# Note that path "/usr/local/awstats/" must reflect your AWStats install path.
|
|
#
|
|
-Alias /awstatsclasses "/usr/local/awstats/wwwroot/classes/"
|
|
-Alias /awstatscss "/usr/local/awstats/wwwroot/css/"
|
|
-Alias /awstatsicons "/usr/local/awstats/wwwroot/icon/"
|
|
-ScriptAlias /awstats/ "/usr/local/awstats/wwwroot/cgi-bin/"
|
|
-
|
|
+Alias /awstatsclasses "@DOCROOT@/awstats/wwwroot/classes/"
|
|
+Alias /awstatscss "@DOCROOT@/awstats/wwwroot/css/"
|
|
+Alias /awstatsicons "@DOCROOT@/awstats/wwwroot/icon/"
|
|
+ScriptAlias /awstats/ "@DOCROOT@/awstats/wwwroot/cgi-bin/"
|
|
|
|
#
|
|
# This is to permit URL access to scripts/files in AWStats directory.
|
|
#
|
|
-<Directory "/usr/local/awstats/wwwroot">
|
|
- Options None
|
|
+<Directory "@DOCROOT@/awstats/wwwroot">
|
|
+ Options FollowSymLinks ExecCGI
|
|
AllowOverride None
|
|
- Order allow,deny
|
|
- Allow from all
|
|
+ AddHandler cgi-script pl
|
|
+ DirectoryIndex awstats.pl
|
|
+ Require all granted
|
|
+ Require ip 127.0.0.1
|
|
</Directory>
|