summaryrefslogtreecommitdiff
path: root/configure_apache.sh
blob: c0f10f07fcbdba3cbbcb3178c077883257a79e8c (plain)
  1. #!/bin/sh
  2. CWD=`pwd`
  3. sed -i "s|WORKING_DIR|$CWD|"
  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."