summaryrefslogtreecommitdiff
path: root/configure_apache.sh
blob: 23db46cc18fceebaba5ec9db455b2bcead778b82 (plain)
  1. #!/bin/sh
  2. CWD=`pwd`
  3. sed -i.orig "s|WORKING_DIR|$CWD|" ledgersmb-httpd.conf;
  4. echo "Which user does your web server run as?"
  5. read username
  6. chown $username spool templates css
  7. echo "Where do we copy the ledgersmb-httpd.conf file to?"
  8. read location
  9. cp ledgersmb-httpd.conf $location
  10. echo "Please restart your web server for the changes to take effect."