Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ESAP GUI
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON SDC
ESCAPE WP5
ESAP GUI
Commits
5f2686d9
Commit
5f2686d9
authored
2 years ago
by
Klaas Kliffen
Browse files
Options
Downloads
Plain Diff
Merge branch 'hotfix/fix-nginx-config' into 'master'
Fix nginx conf See merge request
!107
parents
ca1a9ceb
15036eb1
No related branches found
Branches containing commit
No related tags found
1 merge request
!107
Fix nginx conf
Pipeline
#40197
passed
2 years ago
Stage: build
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+1
-0
1 addition, 0 deletions
Dockerfile
conf.d/default.conf
+18
-0
18 additions, 0 deletions
conf.d/default.conf
with
19 additions
and
0 deletions
Dockerfile
+
1
−
0
View file @
5f2686d9
...
...
@@ -12,4 +12,5 @@ RUN CI= npm run build
FROM
nginx:mainline-alpine
COPY
--from=BUILD_STAGE /app/build /usr/share/nginx/html/esap-gui/
COPY
conf.d/default.conf /etc/nginx/conf.d/default.conf
EXPOSE
80
This diff is collapsed.
Click to expand it.
conf.d/default.conf
0 → 100644
+
18
−
0
View file @
5f2686d9
server
{
listen
80
;
server_name
localhost
;
location
/
esap
-
gui
/ {
root
/
usr
/
share
/
nginx
/
html
;
index
index
.
html
;
try_files
$
uri
$
uri
/ /
esap
-
gui
/
index
.
html
;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
error_page
500
502
503
504
/
50
x
.
html
;
location
= /
50
x
.
html
{
root
/
usr
/
share
/
nginx
/
html
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment