Skip to content

Commit

Permalink
Remove learning locker's IP address setting
Browse files Browse the repository at this point in the history
  • Loading branch information
savvan0h committed Jan 20, 2022
1 parent 493c3df commit 1e3b8e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
25 changes: 5 additions & 20 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:lang: ja
:source-highlighter: rouge
:author: 国立情報学研究所
:revdate: 2022年1月1日
:revdate: 2022年1月20日
:revnumber: 3.0.0版
:doctype: book
:version-label:
Expand Down Expand Up @@ -151,31 +151,16 @@ image::learninglocker/new-xapi-store-client.png[align=center]
const config = {
LRS:{
url:'http://<learning-locker-container-ip-address>:8081/data/xAPI/', // <1>
...
clients:{
// LRS client
'default':{
user:'<xapi-store-client-key>', // <2>
pass:'<xapi-store-client-secret>' // <2>
user:'<xapi-store-client-key>', // <1>
pass:'<xapi-store-client-secret>' // <1>
},
----
<1> `LRS.url` はLearning Lockerのクライアント情報として表示される `xAPI Endpoint` とは異なる
<2> <<learninglocker_client_settings>>で確認したLRSのクライアント情報を設定

なお、 `<learning-locker-container-ip-address>` は以下の方法で確認することができる。

----
$ docker inspect learninglocker
...
"NetworkSettings": {
...
"Networks": {
"moodle-docker_default": {
...
"IPAddress": "xxx.xxx.xxx.xxx",
...
----
<1> <<learninglocker_client_settings>>で確認したLRSのクライアント情報を設定

設定ファイルの変更を `xapi_stmt_gen` コンテナに反映する。

Expand Down
2 changes: 1 addition & 1 deletion xapi_stmt_gen/xapi_stmt_gen/config/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const config = {
}
},
LRS:{
url:'http://172.18.0.9:8081/data/xAPI/',
url:'http://learninglocker:8081/data/xAPI/',
clients:{
// LRS client
'default':{
Expand Down

0 comments on commit 1e3b8e5

Please sign in to comment.