-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb641e3
commit f480a0b
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env bash | ||
# configure web-02 to be identical to web-01 | ||
|
||
sudo apt-get -y update | ||
sudo apt install -y nginx | ||
sudo ufw allow 'Nginx HTTP' | ||
echo "Hello World" | sudo tee /var/www/html/index.html | ||
echo "Ceci n'est pas une page" > 404.html | ||
sudo mv 404.html /var/www/html | ||
echo "server { | ||
listen 80 default_server; | ||
listen [::]:80 default_server; | ||
add_header X-Served-By $HOSTNAME; | ||
root /var/www/html; | ||
index index.html; | ||
location /redirect_me { | ||
return 301 https://github.com/the1Riddle | ||
} | ||
error_page 404 /404.html; | ||
location = /404.html{ | ||
internal; | ||
} | ||
}" > default | ||
|
||
sudo mv -f default /etc/nginx/sites-available/default | ||
sudo service nginx restart |
Empty file.