Compare commits
72
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
947a48dc90 | ||
|
|
c2e962a2be | ||
|
|
f52aee275e | ||
|
|
c2c340f61e | ||
|
|
c9d1646933 | ||
|
|
26adfeee1c | ||
|
|
68d0eeab49 | ||
|
|
ec00d1a445 | ||
|
|
bf09b85448 | ||
|
|
df5d011a3a | ||
|
|
6471292c34 | ||
|
|
7114bb5de1 | ||
|
|
5ea48c405f | ||
|
|
e0df60bc8b | ||
|
|
8b21dcd843 | ||
|
|
e222fc3fba | ||
|
|
6eeef4cfbe | ||
|
|
41858ebddb | ||
|
|
fd30fd4555 | ||
|
|
5788051f22 | ||
|
|
d4616bfdb2 | ||
|
|
b534456065 | ||
|
|
de8920ba0b | ||
|
|
28e32e34a2 | ||
|
|
6c5f4493dc | ||
|
|
4f3da7361a | ||
|
|
69531bde6d | ||
|
|
766b2ebfd0 | ||
|
|
3ef69c527b | ||
|
|
0a0cb15580 | ||
|
|
f1a47aa620 | ||
|
|
9e2ce6b967 | ||
|
|
3d06a59303 | ||
|
|
a0c6074358 | ||
|
|
4afdf95b44 | ||
|
|
ccbe4de116 | ||
|
|
b3001c56ff | ||
|
|
89ffe20aee | ||
|
|
5c25ab9d3d | ||
|
|
d4f4b6217e | ||
|
|
f2ac689f85 | ||
|
|
2367651a7e | ||
|
|
b8b267d4c5 | ||
|
|
68fcb3cbef | ||
|
|
4381a2d350 | ||
|
|
89eec1edec | ||
|
|
3db235a532 | ||
|
|
573ab3d2cb | ||
|
|
c2795cd76c | ||
|
|
4b9900a7fd | ||
|
|
56492a45c8 | ||
|
|
f46dacad9d | ||
|
|
ce899a9480 | ||
|
|
22d1220a14 | ||
|
|
eb11f51348 | ||
|
|
8be9a0749a | ||
|
|
0bd09b8cbd | ||
|
|
ff5442c869 | ||
|
|
4cb5100065 | ||
|
|
f239550be7 | ||
|
|
e5824d17e1 | ||
|
|
5cd3530ef0 | ||
|
|
055119eeb5 | ||
|
|
75df5099e9 | ||
|
|
c084972d39 | ||
|
|
b9fb8971dd | ||
|
|
8296a96294 | ||
|
|
72f7960369 | ||
|
|
4f036e530b | ||
|
|
00e0a17249 | ||
|
|
89626fcd1d | ||
|
|
bfa65c999e |
+30
-1
@@ -17,6 +17,9 @@ services:
|
|||||||
-Dsolr.host=search
|
-Dsolr.host=search
|
||||||
-Dsolr.port=8983
|
-Dsolr.port=8983
|
||||||
-Dsolr.secureComms=none
|
-Dsolr.secureComms=none
|
||||||
|
-Dshare.host=${PROXY_HOST}
|
||||||
|
-Dshare.port=${PROXY_PORT}
|
||||||
|
-Dshare.protocol=${PROXY_PROTOCOL}
|
||||||
-Dalfresco.host=${PROXY_HOST}
|
-Dalfresco.host=${PROXY_HOST}
|
||||||
-Dalfresco.port=${PROXY_PORT}
|
-Dalfresco.port=${PROXY_PORT}
|
||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
@@ -81,6 +84,22 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- shared-file-store-volume:/tmp/Alfresco/sfs
|
- shared-file-store-volume:/tmp/Alfresco/sfs
|
||||||
|
|
||||||
|
share:
|
||||||
|
image: alfresco/alfresco-share:6.2.2
|
||||||
|
mem_limit: 512m
|
||||||
|
environment:
|
||||||
|
REPO_HOST: "platform"
|
||||||
|
CSRF_FILTER_REFERER: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?/?.*"
|
||||||
|
CSRF_FILTER_ORIGIN: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?"
|
||||||
|
JAVA_OPTS: "
|
||||||
|
-Dshare.host=${PROXY_HOST}
|
||||||
|
-Dshare.port=${PROXY_PORT}
|
||||||
|
-Dshare.protocol=${PROXY_PROTOCOL}
|
||||||
|
-Dalfresco.host=${PROXY_HOST}
|
||||||
|
-Dalfresco.port=${PROXY_PORT}
|
||||||
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
|
"
|
||||||
|
|
||||||
postgres-acs:
|
postgres-acs:
|
||||||
image: postgres:11.7
|
image: postgres:11.7
|
||||||
mem_limit: 512m
|
mem_limit: 512m
|
||||||
@@ -130,14 +149,24 @@ services:
|
|||||||
- postgres-acs
|
- postgres-acs
|
||||||
- activemq
|
- activemq
|
||||||
|
|
||||||
|
digital-workspace:
|
||||||
|
image: quay.io/alfresco/alfresco-digital-workspace:2.0.0-adw
|
||||||
|
mem_limit: 128m
|
||||||
|
environment:
|
||||||
|
BASE_PATH: ./
|
||||||
|
APP_CONFIG_ECM_HOST: "${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}"
|
||||||
|
APP_BASE_SHARE_URL: "${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}/#/preview/s"
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: ./nginx-ingress
|
build: ./nginx-ingress
|
||||||
image: local/nginx-ingress:acs-sync
|
image: local/nginx-ingress:acs-sync-share-adw
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
depends_on:
|
depends_on:
|
||||||
- platform
|
- platform
|
||||||
- sync
|
- sync
|
||||||
|
- share
|
||||||
|
- digital-workspace
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
shared-file-store-volume:
|
shared-file-store-volume:
|
||||||
|
|||||||
@@ -8,6 +8,14 @@ if [[ $ACS_SYNC_URL ]]; then
|
|||||||
sed -i s%http:\/\/sync:9090%"$ACS_SYNC_URL"%g /etc/nginx/nginx.conf
|
sed -i s%http:\/\/sync:9090%"$ACS_SYNC_URL"%g /etc/nginx/nginx.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ $ACS_SHARE_URL ]]; then
|
||||||
|
sed -i s%http:\/\/share:8080%"$ACS_SHARE_URL"%g /etc/nginx/nginx.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $ADW_URL ]]; then
|
||||||
|
sed -i s%http:\/\/digital-workspace:8080%"$ADW_URL"%g /etc/nginx/nginx.conf
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ $ACCESS_LOG ]]; then
|
if [[ $ACCESS_LOG ]]; then
|
||||||
sed -i s%\#ENV_ACCESS_LOG%"access_log $ACCESS_LOG;"%g /etc/nginx/nginx.conf
|
sed -i s%\#ENV_ACCESS_LOG%"access_log $ACCESS_LOG;"%g /etc/nginx/nginx.conf
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -52,5 +52,19 @@ http {
|
|||||||
location /sync/ {
|
location /sync/ {
|
||||||
proxy_pass http://sync:9090/alfresco/;
|
proxy_pass http://sync:9090/alfresco/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /share/ {
|
||||||
|
proxy_pass http://share:8080;
|
||||||
|
|
||||||
|
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||||
|
absolute_redirect off;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /workspace/ {
|
||||||
|
proxy_pass http://digital-workspace:8080/;
|
||||||
|
|
||||||
|
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||||
|
absolute_redirect off;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user