Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • benjamin.anthonio/qcm-patiques-metiers
1 result
Show changes
Commits on Source (2)
......@@ -298,4 +298,5 @@ spec:
ports:
- port: 30992
targetPort: 30992
nodePort: 30992
type: NodePort
\ No newline at end of file
......@@ -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 {
......