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
# sources | |
# http://www.scipy.org/install.html | |
# http://sohliloquies.blogspot.ru/2015/07/setting-up-deep-dream-google-researchs.html | |
# https://github.com/BVLC/caffe/wiki/Ubuntu-14.04-VirtualBox-VM | |
# ~2gb dependencies | |
mkdir deep-dream && cd deep-dream | |
sudo apt-get install subversion cmake |
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
server { | |
root /var/www/example.com/static; | |
server_name example.com; | |
access_log /var/log/nginx/example.com.access.log; | |
error_log /var/log/nginx/example.com.error.log; | |
try_files /maintenance.html @proxy; | |
location @proxy { | |
proxy_pass http://127.0.0.1:10001; |