Hi all, I'm trying to set up a simple application: I need a backend for editing and an API for remote usage. I'm trying to build the base project using Vokuro and Phalcon REST Boilerplate (https://github.com/redound/phalcon-rest-boilerplate) as base project. I've set up both in the same project, but i can use one or the other changing the index.php file. Vokuro is an MVC bootstrap (configured as a module), the API REST is MICRO, so the bootstrap and the routes are different. At the moment I'm using nginx aliases: every url with /api/ points to api.php (with the micro bootstrap), any other url to index.php (the default MVC). What do you suggest?