Skip to content

Commit ecd2461

Browse files
authored
Kjører konsekvent på port 8901 for å slippe frem-og-tilbake på konfig lokalt (#123)
1 parent 95d97f3 commit ecd2461

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Kjør `no.nav.ung.sak.db.util.Databaseskjemainitialisering` for å få med skjem
2020
2. Start webserver fra f.eks. IDE
2121
Start `JettyDevServer --vtp`
2222

23-
Swagger: http://localhost:8080/ung/sak/swagger
23+
Swagger: http://localhost:8901/ung/sak/swagger
2424

2525
### Generering av openapi spesifikasjon og typescript klient.
2626

deploy/dev-gcp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
team: k9saksbehandling
88
spec:
99
image: "{{ image }}"
10-
port: 8080
10+
port: 8901
1111
liveness:
1212
path: /ung/sak/internal/health/isAlive
1313
initialDelay: 30

deploy/prod-gcp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
team: k9saksbehandling
88
spec:
99
image: "{{ image }}"
10-
port: 8080
10+
port: 8901
1111
liveness:
1212
path: /ung/sak/internal/health/isAlive
1313
initialDelay: 30

web/app-vtp.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ skjermet.person.scope=api://vtp.teamforeldrepenger.vtp/.default
3232
pdl.pip.url=http://vtp:8060/rest/api/pdl-pip-api/api/v1/person
3333
pdl.pip.scope=api://vtp.teamforeldrepenger.vtp/.default
3434

35-
loadbalancer.url=http://localhost:8080
35+
loadbalancer.url=http://localhost:8901
3636

3737
microsofth.graph.scope=api://vtp.teamforeldrepenger.vtp/.default
3838
microsoft.graph.url=http://vtp:8060/rest/MicrosoftGraphApi/v1.0

web/src/main/java/no/nav/ung/sak/web/server/jetty/AppKonfigurasjon.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package no.nav.ung.sak.web.server.jetty;
22

33
public interface AppKonfigurasjon {
4-
int DEFAULT_SERVER_PORT = 8080;
4+
int DEFAULT_SERVER_PORT = 8901;
55
default int getServerPort() {return DEFAULT_SERVER_PORT;}
66

77
String getContextPath();

0 commit comments

Comments
 (0)