File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/com/atomgraph/linkeddatahub Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -217,20 +217,22 @@ if [ "$PROTOCOL" = "https" ]; then
217217 if [ " $HTTPS_PROXY_PORT " = 443 ]; then
218218 export BASE_URI=" ${PROTOCOL} ://${HOST}${ABS_PATH} "
219219 export ADMIN_BASE_URI=" ${PROTOCOL} ://admin.${HOST}${ABS_PATH} "
220+ export ORIGIN=" ${PROTOCOL} ://${HOST} "
220221 else
221222 export BASE_URI=" ${PROTOCOL} ://${HOST} :${HTTPS_PROXY_PORT}${ABS_PATH} "
222223 export ADMIN_BASE_URI=" ${PROTOCOL} ://admin.${HOST} :${HTTPS_PROXY_PORT}${ABS_PATH} "
224+ export ORIGIN=" ${PROTOCOL} ://${HOST} :${HTTPS_PROXY_PORT} "
223225 fi
224- export ORIGIN=" ${PROTOCOL} ://${HOST} :${HTTPS_PROXY_PORT} "
225226else
226227 if [ " $HTTP_PROXY_PORT " = 80 ]; then
227228 export BASE_URI=" ${PROTOCOL} ://${HOST}${ABS_PATH} "
228229 export ADMIN_BASE_URI=" ${PROTOCOL} ://admin.${HOST}${ABS_PATH} "
230+ export ORIGIN=" ${PROTOCOL} ://${HOST} "
229231 else
230232 export BASE_URI=" ${PROTOCOL} ://${HOST} :${HTTP_PROXY_PORT}${ABS_PATH} "
231233 export ADMIN_BASE_URI=" ${PROTOCOL} ://admin.${HOST} :${HTTP_PROXY_PORT}${ABS_PATH} "
234+ export ORIGIN=" ${PROTOCOL} ://${HOST} :${HTTP_PROXY_PORT} "
232235 fi
233- export ORIGIN=" ${PROTOCOL} ://${HOST} :${HTTP_PROXY_PORT} "
234236fi
235237
236238BASE_URI=$( echo " $BASE_URI " | tr ' [:upper:]' ' [:lower:]' ) # make sure it's lower-case
Original file line number Diff line number Diff line change @@ -1194,7 +1194,6 @@ public void handleAuthorizationCreated(AuthorizationCreated event) throws Messag
11941194 /**
11951195 * Matches application by type and request URL.
11961196 *
1197- * @param type app type
11981197 * @param absolutePath request URL without the query string
11991198 * @return app resource or null, if none matched
12001199 */
You can’t perform that action at this time.
0 commit comments