Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
64a7714d
Commit
64a7714d
authored
Jan 24, 2013
by
Motohisa Nakano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
環境変更用シェル追加
parent
d8587d17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
env.sh
+52
-0
No files found.
env.sh
0 → 100755
View file @
64a7714d
#!/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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment