diff options
-rw-r--r-- | install.sh | 16 | ||||
-rw-r--r-- | ledger-smb-httpd.conf | 16 |
2 files changed, 24 insertions, 8 deletions
diff --git a/install.sh b/install.sh new file mode 100644 index 00000000..085e0310 --- /dev/null +++ b/install.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +CWD=`pwd` + +sed -i "s|WORKING_DIR|$CWD|" + +echo "Which user does your web server run as?" +read username + +chmod $username spool templates css + +echo "Where do we copy the ledger-smb-httpd.conf file to?" +read location +cp ledger-smb-httpd.conf $location + +echo "Please restart your web server for the changes to take effect." diff --git a/ledger-smb-httpd.conf b/ledger-smb-httpd.conf index daf8a028..3e74f1ea 100644 --- a/ledger-smb-httpd.conf +++ b/ledger-smb-httpd.conf @@ -1,7 +1,7 @@ -Alias /ledger-smb /usr/local/ledger-smb/ +Alias /ledger-smb WORKING_DIR/ledger-smb/ -<Directory /usr/local/ledger-smb> +<Directory WORKING_DIR/ledger-smb> AllowOverride All AddHandler cgi-script .pl Options ExecCGI Includes FollowSymlinks @@ -13,32 +13,32 @@ Alias /ledger-smb /usr/local/ledger-smb/ </Files> </Directory> -<Directory /usr/local/ledger-smb/users> +<Directory WORKING_DIR/ledger-smb/users> Order Deny,Allow Deny from All </Directory> -<Directory /usr/local/ledger-smb/bin> +<Directory WORKING_DIR/ledger-smb/bin> Order Deny,Allow Deny from All </Directory> -<Directory /usr/local/ledger-smb/utils> +<Directory WORKING_DIR/ledger-smb/utils> Order Deny,Allow Deny from All </Directory> -<Directory /usr/local/ledger-smb/spool> +<Directory WORKING_DIR/ledger-smb/spool> Order Deny,Allow Deny from All </Directory> -<Directory /usr/local/ledger-smb/templates> +<Directory WORKING_DIR/ledger-smb/templates> Order Deny,Allow Deny from All </Directory> -<Directory /usr/local/ledger-smb/LedgerSMB> +<Directory WORKING_DIR/ledger-smb/LedgerSMB> Order Deny,Allow Deny from All </Directory> |