FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
awstutorials/html_website_host_install_only_apache at master · github-prashant15/awstutorials · GitHub
github-prashant15
/
awstutorials
Public
forked from
shaikhsharik/awstutorials
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
awstutorials
/
html_website_host_install_only_apache
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (19 loc) · 751 Bytes
Breadcrumbs
awstutorials
/
html_website_host_install_only_apache
Copy path
File metadata and controls
37 lines (19 loc) · 751 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Installing Apache and Updating the Firewall
sudo apt update
sudo apt upgrade
sudo apt install apache2
sudo ufw app list
sudo ufw app info "Apache Full"
sudo ufw allow in "Apache Full"
APACHE INSTALLED SUCCESFULLY TILL HERE, YOU CAN CHECK BY ENTERING YOUR PUBLIC IP OR PUBLICK DNS ADDRESS - http://your_server_ip
==================================================
sudo systemctl restart apache2
sudo systemctl status apache2
============================
Basic permissions below:
User Permission : sudo chown -R ubuntu:root /var/www/html
sudo find html -type d -exec chmod 775 {} \;
sudo find html -type f -exec chmod 664 {} \;
===============================
FOR ZIP AND UNZIP MODULE - USEFUL
sudo apt-get install zip unzip
Back
|
FazBrowse Home
|
New Git URL