Self Hosted Applications

From Open Studios
Revision as of 15:04, 12 January 2024 by Paul (talk | contribs)

Self hosting applications allows you to experiment with different solutions, save on cloud costs and create new offerings.

This curated list is based on our experiences to help you on your way.

For a comprehensive list of many other options, check out the Awesome Self Hosted list.

Content Management Systems

Many larger projects in web development will call for some kind of content management system (CMS).

General tips and trips for working with CMS:

  • We recommend using a PHP based CMS running on either a LAMP or LEMP stack.
  • When using PHP-FPM and MariaDB/MySQL, make sure you fine tune your production systems with the correct configuration.
  • Sometimes you'll need to load content in using AJAX for performance or live updates, both Drupal and Wordpress can do this natively with a little bit of code to implement routes.

Drupal

Commercial Sponsor/s: Acquia

Website: https://www.drupal.org/

When to use:

  • Complex multisites that are interrelated
  • Larger clients especially government

Tips and tricks:

  • Import/export your content types, fields, views and site settings in JSON files for easier deployment on multiple environments
  • Make use of Panels and Views, but be careful about the database load you create with those configurations.

Wordpress

Commercial Sponsor/s: Automattic

Website: https://wordpress.org/

When to use:

  • Configurable and scalable for clients of all sizes
  • Smaller clients can be setup with simpler off the shelf kits
  • Larger clients can be setup with bespoke themes and plugins

Tips and tricks:

  • Avoid overcomplicating and overengineering things, try to follow the lessons of others who have tried to do the same things you're doing.
  • Wordpress is one of the largest ecosystems and so it can be tricky to navigate, here are some resources that will help you build a quality site.

Analytics

If you want to know how your websites or web apps are performing, you'll need some kind of monitoring dashboard we typically call "Analytics" software.

You can use free cloud options like Google Analytics and Cloudflare Analytics in a pinch however self hosting has advantages for example you own your data and can do a lot more with it because it's in a database on your system.

Matomo

Commercial Sponsor/s: N/A, open source community driven project

Website: https://matomo.org/

When to use:

  • There are many websites to manage
  • Customisation of interface and reports

Tips and tricks:

  • Put your logo and customise the skin with your own branding

Monitoring

If you have cloud or on-premises infrastructure chances are you'll have a need to keep an eye on things like CPU usage, memory use and disk space.

Monitoring dashboards like New Relic are handy if you don't have the budget to setup a solution or just need rapid deployment via their CLI tools.

Self hosted monitoring can be very handy when off the shelf solutions are no longer sufficient for the complexity of your operation.

Grafana

Commercial Sponsor/s: N/A, open source community driven project

Website: https://grafana.com/

When to use:

  • Complex needs such as multiple systems in multiple locations
  • Customisation options such as monitoring specific services like Redis

Tips and tricks:

  • Setting up Prometheus can be a bit daunting and resources heavy, try using InfluxDB if you just have simpler needs

Search

When driving search features for large content databases like online stores and news services, you may find the need to switch out the built-in search for something a bit more powerful and configurable.

If you are using a CMS and just need it working immediately, you can use a plugin like ElastiPress and connect to a cloud search engine within minutes.

Elastic Search

Commercial Sponsor/s: Elastic

Website: https://www.elastic.co/

When to use:

  • Better performance is needed, i.e. WooCommerce product search is unbearably slow
  • Customisation is needed to improve quality of search results, i.e. fuzzy word matching for common typos
  • Business Intelligence when used as part of the ELK stack
    • ELK combines Elastic Search, Logstash for gathering data from server log files and Kibana to provide a visual interface for analysts.

Tips and tricks:

  • Elastic talks to other systems using simple GET requests via AJAX, making it very easy to talk to using PHP or Javascript code.
  • Make sure you appropriately secure your Elastic instance from the web, i.e. don't allow writes from strangers

Virtualisation