diff --git a/docker-compose.yaml b/docker-compose.yaml index c15177a..45a5841 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -26,7 +26,8 @@ services: - 8443:443 # AƱadir el puerto 443 volumes: - ./public:/var/www/html/public:cached - - ./docker/certs:/etc/nginx/certs # Montar certificados en Nginx + - ./docker/certs:/etc/nginx/certs + - ./certs:/opt/opengnsys/ogcore/etc/certificates networks: - ogcore-network @@ -37,6 +38,7 @@ services: dockerfile: ./docker/Dockerfile-php volumes: - ./:/var/www/html + - ./certs:/opt/opengnsys/ogcore/etc/certificates depends_on: - database networks: diff --git a/env.json b/env.json index a9b8660..d77f392 100644 --- a/env.json +++ b/env.json @@ -1,12 +1,13 @@ { "vars": { - "OG_BOOT_API_URL": "192.168.68.51:8082", - "OG_DHCP_API_URL": "192.168.68.51:8081", - "OG_CORE_IP": "192.168.68.62", - "OG_LOG_IP": "192.168.68.51", + "OG_BOOT_API_URL": "127.0.0.1:8082", + "OG_DHCP_API_URL": "127.0.0.1:8081", + "OG_CORE_IP": "127.0.0.1", + "OG_LOG_IP": "127.0.0.1", "UDS_AUTH_LOGIN": "test", "UDS_AUTH_USERNAME": "test", "UDS_AUTH_PASSWORD": "test", - "UDS_URL": "https:\/\/localhost:8087\/uds\/rest\/" + "UDS_URL": "https:\/\/localhost:8087\/uds\/rest\/", + "SSL_ENABLED": "true" } } \ No newline at end of file