diff --git a/backend/src/main/java/uk/ac/ebi/spot/ols/config/SwaggerConfig.java b/backend/src/main/java/uk/ac/ebi/spot/ols/config/SwaggerConfig.java
index a6ec99cc..a8e069e3 100644
--- a/backend/src/main/java/uk/ac/ebi/spot/ols/config/SwaggerConfig.java
+++ b/backend/src/main/java/uk/ac/ebi/spot/ols/config/SwaggerConfig.java
@@ -13,7 +13,7 @@
@Configuration
public class SwaggerConfig {
- private final String OLS4_SERVER_URL = "https://wwwdev.ebi.ac.uk/ols4";
+ private final String OLS4_SERVER_URL = "https://www.ebi.ac.uk/ols4";
@Lazy
@Bean
@@ -23,7 +23,7 @@ public OpenAPI customOpenApi(ServletContext context) {
.addServersItem(new Server().url(serverUrl))
.info(new Info()
.title("OLS Service")
- .description("REST API for OLS. Please see this page for defined response field in OLS.")
+ .description("REST API for OLS. Please see this page for defined response field in OLS.")
.version("3.0")
.termsOfService("https://www.ebi.ac.uk/about/terms-of-use/")
.license(new License()