Skip to main content

Lampsible

About

Complete LAMP stack setup, with a single CLI command. Powered by Ansible under the hood. This tool can automate almost anything that you'd expect from a LAMP stack.

Features

  • Production ready web apps, powered by LAMP stacks, in a single command
  • SSL certificates via Certbot / Let's Encrypt
  • Most common CMS applications are supported:
    • WordPress, including custom themes and plugins
    • Joomla
    • Drupal
    • TYPO3
  • Custom Laravel apps
  • Fresh, out-of-the-box LAMP stacks
  • Custom Apache configuration (custom webroot, vhosts, etc.)
  • Apache or MySQL by itself
  • SSL via test certificates / self signed, ideal for test environments
  • Custom PHP extensions, php.ini settings, phpMyAdmin, Composer packages, etc.
  • Misc. apps: SuiteCRM
  • And so on...

Requirements

  • Local host: Unix system with Python 3.9 or newer. Tested on Ubuntu Linux, Gentoo Linux and Linux Mint. Might work on macOS, but I haven't tested that. Won't work on Windows, because Ansible requires a Unix like system.
  • Remote server: Ubuntu >= 20, <= 24. You need SSH access and root privilege.
  • (Optional): Lampsible is designed so that you run it in your local CLI, and it installs a web app on your remote server. However, you can also run it locally. This is useful if you want to install a local test server. In that case, your local machine should be similar as the "remote server" outlined above, ie. Ubuntu Linux.

Installing

Pip

pip install lampsible

Alternative: from source

git clone https://github.com/belal-i/lampsible
cd lampsible
python3 -m pip install .

Usage

There are 2 ways to use Lampsible: as a CLI tool, or as a Python library.

CLI tool

Once you've installed Lampsible onto your local environment, you can run the lampsible command.

It takes the format: lampsible user@host ACTION [OPTIONS]

If you are running locally, you can simply do: lampsible localhost ACTION [OPTIONS]

It is designed to be very simple to use. If you omit some important parameter, like admin user, password, site title, etc, you will be prompted to enter a value, or fall back to a default.

Below are some examples:

  • Install a production ready WordPress site:

    lampsible someuser@somehost.com wordpress \
        --email-for-ssl you@yourdomain.com
    
  • Install a production ready WooCommerce shop with some other plugins and a custom theme:

    lampsible someuser@somehost.com wordpress \
        --email-for-ssl you@yourdomain.com \
        --wordpress-plugins woocommerce,wordpress-seo,akismet,wordfence \
        --wordpress-theme frutiger-aero
    
  • Install a production ready Joomla site, add the www. subdomain to the website's domain config:

    lampsible someuser@somehost.com joomla \
        --email-for-ssl you@yourdomain.com
        --www-subdomain
    
  • Install Drupal on a test server. Certbot will set up a test certificate. Also, Apache and MySQL will run on two separate hosts, and MySQL will use a nonstandard port.

    lampsible someuser@somehost.com drupal \
        --database-system-user-host otheruser@dbserver.somehost.com \
        --database-host 10.0.1.2 \
        --database-username dbuser \
        --database-port 6033
        --ssl-test-cert \
        --apache-server-admin you@yourdomain.com \
    
  • Set up a LAMP stack with various custom configuration and a self signed SSL certificate on some local VM:

    lampsible someuser@192.168.123.123 lamp-stack \
        --ask-remote-sudo \
        --ssl-selfsigned \
        --database-username dbuser \
        --database-name testdb \
        --apache-vhost-name some-legacy-app \
        --apache-document-root /var/www/html/some-legacy-app/some-dir/public \
        --php-extensions mysql,xml,mbstring,xdebug,gd
    

Run lampsible --help for a full list of options.

Python library

Lampsible can be used as a Python library, so if you want to build your own tool, and want to leverage Lampsible's features to automate various Apache webserver setups, you can do that.

It could look something like this:

# my_automation_tool.py

from lampsible.lampsible import Lampsible

# Simple WordPress setup
lampsible = Lampsible(
    web_user='someuser',
    web_host='somehost.example.com',
    action='wordpress',
    # Required for Certbot. You can also use email_for_ssl
    apache_server_admin='someuser@example.com',
    database_name='wordpress',
    database_username='db-user',
    database_password='topsecret',
    admin_username='your-wordpress-admin',
    admin_email='wp-admin@example.com',
    admin_password='anothertopsecret',
    site_title='My WordPress Blog',
    wordpress_plugins=[
        'akismet',
        'wordpress-seo',
        'wordfence',
    ],
)

result = lampsible.run()


# Joomla setup. This example is a little more complex,
# to showcase some more features. Webserver and
# database server are two different hosts,
# a database root password will be set.
# Certbot will run with the --test-cert flag,
# an older version of Joomla will be installed,
# some custom PHP extensions will be installed
# alongside the ones required by Joomla,
# and some extra environment variables will be set.
lampsible = Lampsible(
    web_user='someuser',
    web_host='somehost.example.com',
    # This assumes that you want your database server
    # to be reachable from the outside via the
    # domain dbserver.example.com, and within your
    # internal network, including your Joomla webserver,
    # via the private IP address 10.0.1.2.
    database_system_user='root',
    database_system_host='dbserver.example.com',
    database_host='10.0.1.2',
    action='joomla',
    email_for_ssl='someuser@example.com',
    ssl_test_cert=True,
    database_name='joomla',
    database_username='db-user',
    database_password='topsecret',
    database_root_password='supertopsecret',
    admin_username='your-joomla-admin',
    admin_email='joomla-admin@example.com',
    admin_password='anothertopsecret',
    # These extensions will be appended to the list of
    # extensions required by the system you are
    # installing (in this case Joomla).
    php_extensions=['php-curl', 'php-gd'],
    joomla_admin_full_name='Your Name',
    joomla_version='5.1.4',
    site_title='My Joomla Site',
    extra_env_vars={'FOO': 'bar', 'HELLO': 'world'}
)

result = lampsible.run()

FAQ

  • Why not just use Docker?

Lampsible is intended to be an homage to the old school: A simple and versatile LAMP stack. If you want something similar with Docker, consider using Docksible, another project that I maintain. It will install a web app onto your remote server with Docker Compose. It also leverages Ansible locally under the hood.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lampsible-2.7.0.tar.gz (47.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lampsible-2.7.0-py3-none-any.whl (51.3 kB view details)

Uploaded Python 3

File details

Details for the file lampsible-2.7.0.tar.gz.

File metadata

  • Download URL: lampsible-2.7.0.tar.gz
  • Upload date:
  • Size: 47.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for lampsible-2.7.0.tar.gz
Algorithm Hash digest
SHA256 e9fcbca1993bcf59598b1decd077f82f196ec16728cae2b97b61823cf0c25052
MD5 1c84e46c65088f953c74611f0a3c76db
BLAKE2b-256 a73a674f6758ff662914eef6a85a5088ec0c9cf7c91dd087023656f3ce176dfd

See more details on using hashes here.

File details

Details for the file lampsible-2.7.0-py3-none-any.whl.

File metadata

  • Download URL: lampsible-2.7.0-py3-none-any.whl
  • Upload date:
  • Size: 51.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for lampsible-2.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 78e7cc749756a21175acddff0dfcd951a7e3eb4f320e23b556aa130d531944f9
MD5 c392cfa988ea2dd6175c9d4b5b58a3ef
BLAKE2b-256 1014116f88b8fa246784f4e5cefd919b876a4db887bfd3108aef4dea43b18bc1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.7.0 This release

2 files

2.6.1

2 files

2.6.0

2 files

2.5.2

2 files

2.5.1

2 files

2.5.0

2 files

2.4.0

2 files

2.3.3

2 files

2.3.2

2 files

2.3.1

2 files

2.3.0

2 files

2.2.0

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

1.3.7

2 files

1.3.6

2 files

1.3.5

2 files

1.3.4

2 files

1.3.3

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page