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; | |
server_name www.myserver.com myserver.com; | |
root /home/public_html/Prosper202; | |
index index.php index.html index.htm; | |
access_log /home/public_html/Prosper202/log/access.log; | |
error_log /home/public_html/Prosper202/log/error.log; | |
} |
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
#!/bin/bash | |
# Dependencies: fdupes | |
# | |
# This is a script I made to download all images in | |
# an imgur album. May need to be changed in the future. | |
# Example: ./imgurAlbumDownload.sh 3BBMp j6dac AZHdc | |
INPUT="$@" | |
REMOVEDUPES=true |