Browse Source

Start mediating docker-compose dev

pull/111/head
Gökhan Şengün 4 years ago
parent
commit
aa2eda4b73
  1. 152
      etc/docker/docker-compose.yml
  2. 15
      etc/docker/nginx/conf.d/default.conf

152
etc/docker/docker-compose.yml

@ -1,6 +1,18 @@
version: '3.7' version: '3.7'
services: services:
lb:
image: nginx:1.21
ports:
- 80:80
- 443:443
volumes:
- ./nginx/certs/app-publicweb+2.pem:/etc/nginx/certs/app-cert.pem:ro
- ./nginx/certs/app-publicweb+2-key.pem:/etc/nginx/certs/app-key.pem:ro
- ./nginx/conf.d:/etc/nginx/conf.d:ro
networks:
- eshoponabp-network
administration-service: administration-service:
image: eshoponabp/service-administration:latest image: eshoponabp/service-administration:latest
container_name: administration-service-container container_name: administration-service-container
@ -9,14 +21,14 @@ services:
dockerfile: services/administration/src/EShopOnAbp.AdministrationService.HttpApi.Host/Dockerfile dockerfile: services/administration/src/EShopOnAbp.AdministrationService.HttpApi.Host/Dockerfile
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=http://+:80
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
# - Redis__Configuration=redis # - Redis__Configuration=redis
# - RabbitMQ__Connections__Default__HostName=rabbitmq # - RabbitMQ__Connections__Default__HostName=rabbitmq
# - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; # - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44353:443" # - "44353:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -27,8 +39,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
identity-service: identity-service:
image: eshoponabp/service-identity:latest image: eshoponabp/service-identity:latest
container_name: identity-service-container container_name: identity-service-container
@ -37,15 +49,15 @@ services:
dockerfile: services/identity/src/EShopOnAbp.IdentityService.HttpApi.Host/Dockerfile dockerfile: services/identity/src/EShopOnAbp.IdentityService.HttpApi.Host/Dockerfile
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80 - ASPNETCORE_URLS=http://+:80
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Redis__Configuration=redis - Redis__Configuration=redis
- RabbitMQ__Connections__Default__HostName=rabbitmq - RabbitMQ__Connections__Default__HostName=rabbitmq
- ConnectionStrings__IdentityService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Identity;Pooling=false; - ConnectionStrings__IdentityService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Identity;Pooling=false;
- ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44351:443" # - "44351:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -53,11 +65,11 @@ services:
condition: service_healthy condition: service_healthy
rabbitmq: rabbitmq:
condition: service_healthy condition: service_healthy
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
catalog-service: catalog-service:
image: eshoponabp/service-catalog:latest image: eshoponabp/service-catalog:latest
container_name: catalog-service-container container_name: catalog-service-container
@ -67,8 +79,8 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80;http://+:81; - ASPNETCORE_URLS=https://+:443;http://+:80;http://+:81;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Kestrel__EndPoints__Http__Url=http://docker.host.internal:80 - Kestrel__EndPoints__Http__Url=http://docker.host.internal:80
- Kestrel__EndPoints__Https__Url=https://docker.host.internal:443 - Kestrel__EndPoints__Https__Url=https://docker.host.internal:443
- Kestrel__EndPoints__gRPC__Url=http://docker.host.internal:81 - Kestrel__EndPoints__gRPC__Url=http://docker.host.internal:81
@ -76,10 +88,10 @@ services:
# - RabbitMQ__Connections__Default__HostName=rabbitmq # - RabbitMQ__Connections__Default__HostName=rabbitmq
# - ConnectionStrings__CatalogService=mongodb://mongodb/EShopOnAbp_Catalog # - ConnectionStrings__CatalogService=mongodb://mongodb/EShopOnAbp_Catalog
# - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; # - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44354:443" # - "44354:443"
- "5000:80" # - "5000:80"
- "81:81" # - "81:81"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -90,8 +102,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
basket-service: basket-service:
image: eshoponabp/service-basket:latest image: eshoponabp/service-basket:latest
container_name: basket-service-container container_name: basket-service-container
@ -101,15 +113,15 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
# - Redis__Configuration=redis # - Redis__Configuration=redis
# - RabbitMQ__Connections__Default__HostName=rabbitmq # - RabbitMQ__Connections__Default__HostName=rabbitmq
# - RemoteServices__Catalog__BaseUrl=https://catalog-service # - RemoteServices__Catalog__BaseUrl=https://catalog-service
# - RemoteServices__Catalog__GrpcUrl=http://catalog-service # - RemoteServices__Catalog__GrpcUrl=http://catalog-service
# - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; # - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44355:443" # - "44355:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -120,8 +132,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
ordering-service: ordering-service:
image: eshoponabp/service-ordering:latest image: eshoponabp/service-ordering:latest
container_name: ordering-service-container container_name: ordering-service-container
@ -131,14 +143,14 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Redis__Configuration=redis - Redis__Configuration=redis
- RabbitMQ__Connections__Default__HostName=rabbitmq - RabbitMQ__Connections__Default__HostName=rabbitmq
- ConnectionStrings__OrderingService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Ordering;Pooling=false; - ConnectionStrings__OrderingService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Ordering;Pooling=false;
- ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44356:443" # - "44356:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -149,8 +161,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
payment-service: payment-service:
image: eshoponabp/service-payment:latest image: eshoponabp/service-payment:latest
container_name: payment-service-container container_name: payment-service-container
@ -160,8 +172,8 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Redis__Configuration=redis - Redis__Configuration=redis
- RabbitMQ__Connections__Default__HostName=rabbitmq - RabbitMQ__Connections__Default__HostName=rabbitmq
- ConnectionStrings__PaymentService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Payment;Pooling=false; - ConnectionStrings__PaymentService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Payment;Pooling=false;
@ -169,8 +181,8 @@ services:
- Payment__PayPal__ClientId=PAYPAL_CLIENT_ID - Payment__PayPal__ClientId=PAYPAL_CLIENT_ID
- Payment__PayPal__Secret=PAYPAL_SECRET - Payment__PayPal__Secret=PAYPAL_SECRET
- Payment__PayPal__Environment=Sandbox - Payment__PayPal__Environment=Sandbox
ports: # ports:
- "44357:443" # - "44357:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -181,8 +193,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
app-web: app-web:
image: eshoponabp/app-web:latest image: eshoponabp/app-web:latest
container_name: app-web-container container_name: app-web-container
@ -192,8 +204,8 @@ services:
environment: environment:
- RabbitMQ__Connections__Default__HostName=rabbitmq - RabbitMQ__Connections__Default__HostName=rabbitmq
- RemoteServices__Default__BaseUrl=http://gateway-web-public - RemoteServices__Default__BaseUrl=http://gateway-web-public
ports: # ports:
- "4200:80" # - "4200:80"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -202,8 +214,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
app-authserver: app-authserver:
image: eshoponabp/app-authserver:latest image: eshoponabp/app-authserver:latest
container_name: app-authserver-container container_name: app-authserver-container
@ -214,8 +226,8 @@ services:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- ASPNETCORE_HTTPS_PORT=44330 - ASPNETCORE_HTTPS_PORT=44330
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
# - Redis__Configuration=redis # - Redis__Configuration=redis
# - RabbitMQ__Connections__Default__HostName=rabbitmq # - RabbitMQ__Connections__Default__HostName=rabbitmq
# - App__SelfUrl=https://app-authserver # - App__SelfUrl=https://app-authserver
@ -225,8 +237,8 @@ services:
- AuthServer__RequireHttpsMetadata=true - AuthServer__RequireHttpsMetadata=true
# - ConnectionStrings__IdentityService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Identity;Pooling=false; # - ConnectionStrings__IdentityService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Identity;Pooling=false;
# - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false; # - ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
ports: # ports:
- "44330:443" # - "44330:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -237,8 +249,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
app-publicweb: app-publicweb:
image: eshoponabp/app-publicweb:latest image: eshoponabp/app-publicweb:latest
container_name: app-publicweb-container container_name: app-publicweb-container
@ -248,8 +260,8 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
# - Redis__Configuration=redis # - Redis__Configuration=redis
# - RabbitMQ__Connections__Default__HostName=rabbitmq # - RabbitMQ__Connections__Default__HostName=rabbitmq
# - App__SelfUrl=https://app-publicweb # - App__SelfUrl=https://app-publicweb
@ -257,8 +269,8 @@ services:
- AuthServer__RequireHttpsMetadata=true - AuthServer__RequireHttpsMetadata=true
# - RemoteServices__Default__BaseUrl=http://gateway-web-public # - RemoteServices__Default__BaseUrl=http://gateway-web-public
# - ReverseProxy__Clusters__cluster1__Destinations__destination1__Address=http://gateway-web-public # - ReverseProxy__Clusters__cluster1__Destinations__destination1__Address=http://gateway-web-public
ports: # ports:
- "44335:443" # - "44335:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -267,8 +279,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
gateway-web: gateway-web:
image: eshoponabp/gateway-web:latest image: eshoponabp/gateway-web:latest
container_name: gateway-web-container container_name: gateway-web-container
@ -278,8 +290,8 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker # Yarp can't resolve dns, needs to be overridden - ASPNETCORE_ENVIRONMENT=Docker # Yarp can't resolve dns, needs to be overridden
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Redis__Configuration=redis - Redis__Configuration=redis
- ReverseProxy__Clusters__accountCluster__Destinations__destination1__Address=http://app-authserver - ReverseProxy__Clusters__accountCluster__Destinations__destination1__Address=http://app-authserver
- ReverseProxy__Clusters__identityCluster__Destinations__destination1__Address=http://identity-service - ReverseProxy__Clusters__identityCluster__Destinations__destination1__Address=http://identity-service
@ -289,8 +301,8 @@ services:
- ReverseProxy__Clusters__feature-management-cluster__Destinations__destination1__Address=http://administration-service - ReverseProxy__Clusters__feature-management-cluster__Destinations__destination1__Address=http://administration-service
- ReverseProxy__Clusters__permission-management-cluster__Destinations__destination1__Address=http://administration-service - ReverseProxy__Clusters__permission-management-cluster__Destinations__destination1__Address=http://administration-service
- ReverseProxy__Clusters__setting-management-cluster__Destinations__destination1__Address=http://administration-service - ReverseProxy__Clusters__setting-management-cluster__Destinations__destination1__Address=http://administration-service
ports: # ports:
- "44372:443" # - "44372:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -299,8 +311,8 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
gateway-web-public: gateway-web-public:
image: eshoponabp/gateway-web-public:latest image: eshoponabp/gateway-web-public:latest
container_name: gateway-web-public-container container_name: gateway-web-public-container
@ -310,8 +322,8 @@ services:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Docker # Yarp can't resolve dns, needs to be overridden - ASPNETCORE_ENVIRONMENT=Docker # Yarp can't resolve dns, needs to be overridden
- ASPNETCORE_URLS=https://+:443;http://+:80; - ASPNETCORE_URLS=https://+:443;http://+:80;
- Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx # - Kestrel__Certificates__Default__Path=/root/certificate/eshop-dk.pfx
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49 # - Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
- Redis__Configuration=redis - Redis__Configuration=redis
- ReverseProxy__Clusters__accountCluster__Destinations__destination1__Address=http://app-authserver - ReverseProxy__Clusters__accountCluster__Destinations__destination1__Address=http://app-authserver
- ReverseProxy__Clusters__administrationCluster__Destinations__destination1__Address=http://administration-service - ReverseProxy__Clusters__administrationCluster__Destinations__destination1__Address=http://administration-service
@ -320,8 +332,8 @@ services:
- ReverseProxy__Clusters__orderingCluster__Destinations__destination1__Address=http://ordering-service - ReverseProxy__Clusters__orderingCluster__Destinations__destination1__Address=http://ordering-service
- ReverseProxy__Clusters__paymentCluster__Destinations__destination1__Address=http://payment-service - ReverseProxy__Clusters__paymentCluster__Destinations__destination1__Address=http://payment-service
- ReverseProxy__Clusters__productPictureCluster__Destinations__destination1__Address=http://catalog-service - ReverseProxy__Clusters__productPictureCluster__Destinations__destination1__Address=http://catalog-service
ports: # ports:
- "44373:443" # - "44373:443"
depends_on: depends_on:
redis: redis:
condition: service_healthy condition: service_healthy
@ -330,9 +342,9 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- eshoponabp-network - eshoponabp-network
volumes: # volumes:
- ./certs:/root/certificate # - ./certs:/root/certificate
networks: networks:
eshoponabp-network: eshoponabp-network:
external: true external: true

15
etc/docker/nginx/conf.d/default.conf

@ -0,0 +1,15 @@
server {
listen 80;
listen 443 ssl;
server_name administration-service;
ssl_certificate /etc/nginx/certs/app-cert.pem;
ssl_certificate_key /etc/nginx/certs/app-key.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://administration-service:80;
proxy_set_header Host $host;
}
}
Loading…
Cancel
Save