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
| Setup/Overview | |
| - https://www.youtube.com/watch?v=bBA2yCnEf68 | |
| nginx configuration and server commands setup | |
| - https://gist.github.com/okeken/cba0bb8e9159fd8f07eca60ebcfc42bb | |
| Setup Users/Permission | |
| - https://www.youtube.com/watch?v=T7Hw-94BSgg |
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
| server { | |
| listen 80; | |
| listen [::]:80; | |
| root /var/www/your_domain/html; | |
| index index.html index.htm index.nginx-debian.html; | |
| server_name your_domain www.your_domain; | |
| location / { |
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
| Module.exports = | |
| [ | |
| { | |
| id: 1, | |
| email: "amet@Nulla.net", | |
| first_name: "Judah", | |
| last_name: "Camacho" | |
| }, | |
| { | |
| id: 2, |
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
| var name = 'Oke Kehinde'; | |
| var courses =['html', 'css', 'php', 'js', 'nodejs', 'design'] | |
| console.log('My Name is '+ name + ' and I do the following course: ' + courses) | |
| console.log(courses.length); | |
| num =0 |