You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DEPLOYING.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ To integrate with [Modulector][modulector] and/or [BioAPI][bioapi] using `docker
179
179
name: 'multiomix-network'
180
180
```
181
181
3. The new versions of BioAPI and Modulector already come with service names suitable for integration with Multiomix. But **if you have any old version of those platforms**, change the Modulector and BioAPI configuration so that it does not conflict with the Multiomix configuration:
182
-
1. Rename all the services in the Modulector and BioAPI `docker-compose.yml` files with the suffix `_modulector` and `_bioapi`. And rename `web` service to `modulector` or `bioapi` respectively. **NOTE:** do not forget to rename the `depends_on` parameters, and the database connection parameters to point to the new services names.
182
+
1. Rename all the services in the Modulector and BioAPI `docker-compose.yml` files with the suffix `_modulector` and `_bioapi`. For example `mongo_bioapi`, `web_bioapi` and `nginx_bioapi` in the case of BioAPI. **NOTE:** do not forget to rename the `depends_on` parameters, and the database connection parameters to point to the new services names.
183
183
2. Change the following block in the NGINX configuration files. In Modulector it's `config/nginx/conf.d/modulector.conf`, in BioAPI it's `/nginx/conf.d/default.conf`:
184
184
```
185
185
# Old
@@ -191,7 +191,7 @@ To integrate with [Modulector][modulector] and/or [BioAPI][bioapi] using `docker
191
191
# New
192
192
upstream web {
193
193
ip_hash;
194
-
server modulector:8000; # Or bioapi, dependening on which config file you're
194
+
server web_modulector:8000; # Or web_bioapi, dependening on which config file you're editing
0 commit comments