Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QCM Pratiques métiers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
benjamin.anthonio
QCM Pratiques métiers
Compare revisions
1bc9f7048c3ac5d6e12bfa653f7a1684738b58b3 to cc454801fe5d2583b621bdf8285eb06fdc8f29f5
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
benjamin.anthonio/qcm-patiques-metiers
Select target project
No results found
cc454801fe5d2583b621bdf8285eb06fdc8f29f5
Select Git revision
Branches
Jenkins
master
monolitic
write_tests
Swap
Target
benjamin.anthonio/qcm-patiques-metiers
Select target project
benjamin.anthonio/qcm-patiques-metiers
1 result
1bc9f7048c3ac5d6e12bfa653f7a1684738b58b3
Select Git revision
Branches
Jenkins
master
monolitic
write_tests
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
encore correction nginx
· ea77f984
Abelangel
authored
1 week ago
ea77f984
deploiement maj
· cc454801
Abelangel
authored
1 week ago
cc454801
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
minikube/deploiement-complet.yml
+1
-0
1 addition, 0 deletions
minikube/deploiement-complet.yml
minikube/nginx-configmap.yml
+5
-1
5 additions, 1 deletion
minikube/nginx-configmap.yml
with
6 additions
and
1 deletion
minikube/deploiement-complet.yml
View file @
cc454801
...
...
@@ -298,4 +298,5 @@ spec:
ports
:
-
port
:
30992
targetPort
:
30992
nodePort
:
30992
type
:
NodePort
\ No newline at end of file
This diff is collapsed.
Click to expand it.
minikube/nginx-configmap.yml
View file @
cc454801
...
...
@@ -13,9 +13,13 @@ data:
sendfile on;
keepalive_timeout 65;
server {
listen
80
;
listen
30992
;
location / {
proxy_pass http://service-frontend:4200;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /auth {
...
...
This diff is collapsed.
Click to expand it.