Ask DN: How do you deploy and host websites today?

over 7 years ago from Jason Gowans, Co-Founder of Aerobatic

  • Jesse DobbelaereJesse Dobbelaere, over 7 years ago

    I deploy my php CMS websites with Capistrano to plain shared hosting with SSH access. Capistrano basically git clones the project to a new release folder and pulls the composer vendors and executes some other scripts like symlinking uploads folder. The advantage is that you can easily do a "cap rollback" to an earlier version.

    0 points