diff --git a/angular/RestClient/environments/environment.prod.ts b/angular/RestClient/environments/environment.prod.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e7abc07ec43af506db487532b2175c50676f3534
--- /dev/null
+++ b/angular/RestClient/environments/environment.prod.ts
@@ -0,0 +1,9 @@
+const monolithUrl = 'http://room-booking:8080';
+
+export const environment = {
+  production: true,
+  authAPI: 'http://auth-api:8101',
+  userAPI: `http://${monolithUrl}`,
+  hotelAPI: `http://${monolithUrl}`,
+  bookingAPI: `http://${monolithUrl}`,
+};