DEPLOY a LARAVEL app with MySQL database on DIGITALOCEAN (Ubuntu 20.04)

Поділитися
Вставка
  • Опубліковано 10 вер 2024

КОМЕНТАРІ • 20

  • @alexrimui
    @alexrimui Місяць тому

    The video has really helped me from Kenya. Thank you.

  • @LaTecnologiaEnTusManos
    @LaTecnologiaEnTusManos 2 роки тому +1

    Hi, I'm from de Dominican Republic and your video let me resolve one problems that a have in DigitalOcean, thank for all

  • @tinaranathania
    @tinaranathania 9 місяців тому

    1 year later, I did some minor adjustments but omg..you literally saved my life! This is my very first server setup so it was a bit scary for me. BUT WE DID IT 🥺💕💕 Thank you so muchhhh!

    • @PostdocLife
      @PostdocLife  9 місяців тому

      Great to hear! Thank you for watching!

  • @bobross2404
    @bobross2404 Рік тому

    This is the video that finally worked for me. I had to do a few things differently, but now I have my first server setup. Thank you for the video!

    • @PostdocLife
      @PostdocLife  Рік тому

      Glad it helped! I made it specifically brute force, without anything too much like Docker etc. However, I should have done it with GitHub connection :) Some things are probably also different for Ubuntu 22.04 (vs 20.04 in the video). I'll try to update whenever I'm deploying another Laravel website.

  • @alvinellavu9603
    @alvinellavu9603 Рік тому

    i've followed this tutorial all along and girl..... thank you soo much

  • @Magnomoy
    @Magnomoy 2 роки тому

    This is exactly what I have been looking for, Thank you!

  • @zhengen
    @zhengen 2 роки тому

    You are an angel, thanks a lot.

  • @Borma425
    @Borma425 2 роки тому

    Really This Video is Helpful . thanks

  • @PostdocLife
    @PostdocLife  Рік тому

    *Some alterations:*
    - don't use sudo mysql_secure_installation, instead log into mysql and use:
    _alter user 'root'@'localhost' identified with mysql_native_password by 'yourpassword';_
    - use the following instead in laravel.conf:
    _RewriteCond %{HTTPS} off_
    *You might also need to:*
    - uncomment the following in the php.ini:
    _extension=pdo_mysql_
    - install php-mysql: (make sure it suggests the right php version like php8.1-mysql)
    _sudo apt-get install php-mysql_

  • @shannonkendi166
    @shannonkendi166 10 місяців тому

    Not all my laravel files got copied . How do I resolve this?

    • @PostdocLife
      @PostdocLife  10 місяців тому

      it's probably the hidden files? try scp -rp [source]/. [user-name]@[IPaddress-server]:[destination]/

  • @goondanjang
    @goondanjang 2 роки тому

    can you make part 2 on how to setup subdomain routing on digital ocean with laravel ?

    • @PostdocLife
      @PostdocLife  2 роки тому

      Hey, thanks for watching! I have never used subdomains :), but if I will use them, I'll make one!