Forked from teja156/gist:8c35a05f43635da4cbd06b47c0d91e93
Created
June 19, 2024 11:50
-
-
Save saksham-raghuvanshi/2b7ffd9f1fee86fc8f3ccbdf46b1919e to your computer and use it in GitHub Desktop.
Commands for deploying wordpress website on AWS EC2 shown in my YouTube video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Install Apache server on Ubuntu | |
| ```sudo apt install apache2``` | |
| 2. Install php runtime and php mysql connector | |
| ```sudo apt install php libapache2-mod-php php-mysql``` | |
| 3. Install MySQL server | |
| ```sudo apt install mysql-server ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment