diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-08-27 17:56:04 -0700 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-08-28 15:59:05 +0200 |
commit | 1e86592650fc695615e0fa34c947b32693d03466 (patch) | |
tree | e970e02d2cb56c94276971a271f028db9471f0ac /src/main/docker/frontend/frontend-files.xml | |
parent | 56f5c144cfff229235817feda9baf4036b22156a (diff) |
Fix frontend docker
Fix the frontend docker in Nginx with https for backend in https as well
Issue-ID: CLAMP-486
Change-Id: I33fd89289618affa5e734c80991aaefece31309e
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'src/main/docker/frontend/frontend-files.xml')
-rw-r--r-- | src/main/docker/frontend/frontend-files.xml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main/docker/frontend/frontend-files.xml b/src/main/docker/frontend/frontend-files.xml index 2610e828..aaf32be8 100644 --- a/src/main/docker/frontend/frontend-files.xml +++ b/src/main/docker/frontend/frontend-files.xml @@ -17,7 +17,7 @@ limitations under the License. ============LICENSE_END========================================================= --> - + <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" @@ -35,8 +35,13 @@ <excludes> <exclude>node_modules</exclude> </excludes> - <directory>${project.basedir}/ui-react</directory> - <outputDirectory>/</outputDirectory> + <directory>${project.build.directory}/${ui.react.src}</directory> + <outputDirectory></outputDirectory> + </fileSet> + <!-- include ssl certificates files obtain from aaf p12 --> + <fileSet> + <directory>${project.basedir}/src/main/resources/clds/aaf/ssl</directory> + <outputDirectory>ssl</outputDirectory> </fileSet> </fileSets> |