upstream coreweb {
server 127.0.0.1:1344;
}
upstream coreapi {
server 127.0.0.1:1345;
}
server {
listen 80;
server_name .core.wrine.co;
location / {
proxy_pass http://coreweb;
}
location /api/ {
rewrite ^/api(/.*)$ $1 break;
proxy_pass http://coreapi;
}
}
Core and all plugins have a migration files in the migration folder.
Before run any migration verify that drop tables, databases or documents are not affecting your current development.