diff --git a/INSTALL.md b/INSTALL.md index aeeb8d3..8864a2e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -131,6 +131,7 @@ sudo chown -R www-data:www-data /var/www/wx sudo usermod -a -G www-data pi sudo chmod 775 /var/www/wx cp templates/index.html /var/www/wx/index.html +cp templates/logo-small.png /var/www/wx/logo-small.png sudo systemctl restart nginx ``` diff --git a/README.md b/README.md index b4bf6a2..c98e0c7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![Raspberry NOAA](header.png) + # NOAA Automated capture using Raspberry PI Most of the code and setup stolen from: [Instructables](https://www.instructables.com/id/Raspberry-Pi-NOAA-Weather-Satellite-Receiver/) diff --git a/header.png b/header.png new file mode 100755 index 0000000..1de55db Binary files /dev/null and b/header.png differ diff --git a/install.sh b/install.sh index e4c99ec..21a0284 100755 --- a/install.sh +++ b/install.sh @@ -173,6 +173,9 @@ sudo systemctl restart nginx if [ ! -e /var/www/wx/index.html ]; then cp templates/index.html /var/www/wx/index.html fi +if [ ! -e /var/www/wx/logo-small.png ]; then + cp templates/logo-small.png /var/www/wx/logo-small.png +fi log_done "Nginx configured" ### Setup ramFS