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
I'm running akeneo on http port 80 and binding it to port 80 which is apache in the server host and has a configuration domain for this port . When i try to bind it to port 443 in docker-compose nothing works :
I need to map it to https port same as i mapped it to the configured apache domain port
Also tried to do ssl on the file itself in the server host but it ended up with showing internal server error
Conclusion :
How can i enable https for akeneo project
The text was updated successfully, but these errors were encountered:
I'm running akeneo on http port 80 and binding it to port 80 which is apache in the server host and has a configuration domain for this port . When i try to bind it to port 443 in docker-compose nothing works :
httpd:
image: 'httpd:2.4'
environment:
APP_ENV: '${APP_ENV:-prod}'
depends_on:
- 'fpm'
ports:
- '${DOCKER_PORT_HTTP:-443}:443'
volumes:
- './:/srv/pim:ro'
- './docker/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro'
- './docker/akeneo.conf:/usr/local/apache2/conf/vhost.conf:ro'
I need to map it to https port same as i mapped it to the configured apache domain port
Also tried to do ssl on the file itself in the server host but it ended up with showing internal server error
Conclusion :
How can i enable https for akeneo project
The text was updated successfully, but these errors were encountered: