Showing posts with label laravel. Show all posts
Showing posts with label laravel. Show all posts

Wednesday, April 24, 2024

Nginx : Deploy Laravel

1.Install Laravel2.Edit parament in Nginx configurationserver {        server_name example.com;        listen X.X.X.X;        root /home/example/public_html/laravel/public; <- change the active laravel folder        index index.php index.htm index.html;       ...

Tuesday, May 25, 2021

Laravel : Install Laravel on Centos 7 and MSSQL connector

Install Composer ----------------#curl -sS https://getcomposer.org/installer | php#mv composer.phar /usr/bin/composer#chmod +x /usr/bin/composerInstall Laravel---------------#git clone https://github.com/laravel/laravel.git#cd /var/www/laravel#composer install#cp .env.example .env#php artisan key:generate#php artisan migrate#chown -R apache.apache /var/www/laravel - if in hosting no to change#chmod...