We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96ad56 commit 45f42bdCopy full SHA for 45f42bd
angular/Dockerfile
@@ -7,4 +7,6 @@ RUN yarn run ng build --configuration production
7
# stage 2
8
FROM nginx
9
COPY --from=node /app/dist /usr/share/nginx/html
10
+# This is a workaround to avoid updating the file outside the container.
11
+RUN sed -i "s/https/http/g" /usr/share/nginx/html/assets/appconfig.production.json
12
COPY fast-nginx-default.conf /etc/nginx/conf.d/default.conf
angular/src/assets/appconfig.production.json
@@ -1,5 +1,5 @@
1
{
2
- "remoteServiceBaseUrl": "http://localhost:9902",
+ "remoteServiceBaseUrl": "https://localhost:44311",
3
"appBaseUrl": "http://localhost:4200",
4
"localeMappings": [
5
0 commit comments