Commit 64a7714d by Motohisa Nakano

環境変更用シェル追加

parent d8587d17
#!/bin/sh
modify_htaccess()
{
URI=$1
cat > abvw/.htaccess << EOF
SetEnvIf Referer "^$URI" RefererCheck
Order deny,allow
Deny from all
Allow from env=RefererCheck
<Files ~ "\.(js|json)$">
Header add Pragma "no-cache"
Header set Cache-Control no-cache
</Files>
EOF
}
modify_api()
{
URI_PREFIX=$1
cat > abvw/common/json/sys/conf.json << EOF
{
"apiUrl" : "$URI_PREFIX/{0}/abvapi",
"apiLoginUrl" : "$URI_PREFIX/nuabvapi",
"apiResourceDlUrl" : "$URI_PREFIX/{0}/dl",
"bookShelfCount": 15,
"bookListCount" : 15,
"debug" : true,
"loginPage" : "index.html",
"appName" : "ABookWebCL",
"appVersion" : "0.0.1"
}
EOF
}
case "$1" in
localhost)
modify_htaccess "http://localhost/nmoto/Sites/webviewer/"
modify_api "https://web3.agentec.jp/acms"
;;
web2)
modify_htaccess "https://web2.mediaservice.agentec.jp/mc/webviewer/"
modify_api "https://web2.mediaservice.agentec.jp/mc"
;;
web3)
modify_htaccess "https://web3.agentec.jp/web/"
modify_api "https://web3.agentec.jp/acms"
;;
*)
echo $"Usage: $0 {localhost|web2|web3}"
;;
esac
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment