By Parousia
Hi, i’m new at Digitalocean, and i want to deploying my laravel website with a postgresql as a database for my website, i have created a droplets, and search a tutorial. But i still confuse because there’s no tutorial to host a laravel and postgresql at a droplets from creating and then setting up a droplets until deployin a laravel website. Can anyone help me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Heya,
check this article here :
https://www.digitalocean.com/blog/create-simple-contacts-laravel-postgresql
it should provide you with the needed steps to achieve this.
Hi there,
You’ve got a straightforward path to get things running!
Spin up the Laravel 1-Click Droplet:
Stop and Disable MySQL (since you’re using PostgreSQL):
SSH into your Droplet and run:
sudo systemctl stop mysql
sudo systemctl disable mysql
This frees up resources and avoids conflicts.
Install PostgreSQL:
.env
with the connection details.Install PHP Modules for PostgreSQL:
Make sure you have the necessary PHP extension:
sudo apt install php-pgsql
sudo systemctl restart php*-fpm nginx
Run Laravel Migrations:
Deploy your code, then run:
php artisan migrate
(Optional but Recommended) Use Managed PostgreSQL:
Let me know if you have any questions.
- Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.