added empty index file and htaccess

This commit is contained in:
overflowerror 2022-01-09 21:07:48 +01:00
parent 93f2f20b37
commit b59bc5437b
4 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
credentials.sh

1
.htaccess Normal file
View file

@ -0,0 +1 @@
FallbackResource "index.sh"

6
credentials.sh.templ Normal file
View file

@ -0,0 +1,6 @@
#!/bin/bash
mysqlHost=
mysqlDB=
mysqlUser=
mysqlPassword=

10
index.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
. base.sh
. mysql.sh
. credentials.sh
. shinden/engine.sh
connect "$mysqlHost" "$mysqlUser" "$mysqlPassword" "$mysqlDB"
router