I'm trying to setup ecommerce with SSL
So when I installed open-edx I create SSL for everything, lms,cms,ecommerce,discovery etc etc
So now I'm following the steps from
And I'm stuck and I'm pretty sure that is related to the SSL
And i get something like this
This is from /edx/app/nginx/sites-available/ecommerce
server {
server_name ~^((stage|prod)-)?ecommerce.*;
listen 18130;
So when the tutorial says
In all places
/edx/app/edxapp/lms.env.json
--------------------------------
--------------------------------
STEP 5
--------------------------------
sudo su ecommerce -s /bin/bash
cd ~/ecommerce
source ../ecommerce_env
python manage.py makemigrations
python manage.py migrate
python manage.py create_or_update_site \
--site-id=1 \
--partner-code=edX \
--partner-name='Open edX' \
--payment-processors=paypal \
--client-id=ecommerce-key \
--client-secret=ecommerce-secret \
Any suggestion where the error might be?