-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
YDA-6000 Adapt Docker setup for EPOS-MSL cat v2
First adaptations Docker setup for version 2 of the EPOS-MSL playbook. Most important changes: - CKAN is upgraded from 2.9.x to 2.11.x - The MSL-API application will now handle front-end traffic rather than CKAN. CKAN will only be used in the back end by the MSL-API application. - The Ubuntu base images for CKAN and MSL-API have been upgraded from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS.
- Loading branch information
Showing
9 changed files
with
80 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[supervisord] | ||
nodaemon=true | ||
logfile=/var/log/supervisord.log | ||
pidfile=/var/run/supervisord.pid | ||
|
||
[program:nginx] | ||
command=/usr/sbin/nginx -g 'daemon off;' | ||
autostart=true | ||
autorestart=true | ||
stdout_logfile=/var/log/nginx-supervisord.log | ||
stderr_logfile=/var/log/nginx-supervisord-error.log | ||
user=root | ||
|
||
[program:php-fpm] | ||
command=/usr/sbin/php-fpm8.3 --nodaemonize --fpm-config /etc/php/8.3/fpm/php-fpm.conf | ||
autostart=true | ||
autorestart=true | ||
stdout_logfile=/var/log/php-fpm-supervisord.log | ||
stderr_logfile=/var/log/php-fpm-supervisord-error.log | ||
user=root | ||
|
||
[group:msl-api] | ||
programs=nginx,php-fpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters