Skip to content

Commit

Permalink
add back a bunch of misc logistical files from the original monumenta…
Browse files Browse the repository at this point in the history
…l repo
  • Loading branch information
mahmoud committed Sep 3, 2017
1 parent c508f14 commit e96be74
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 0 deletions.
29 changes: 29 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
BSD 3-Clause License

Copyright (c) 2017, Stephen LaPorte, Pawel Marynowski
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47 changes: 47 additions & 0 deletions conf/monumental.nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
upstream monumental_uwsgi {
server localhost:12000;
}


server {
server_name maps.wikilovesmonuments.org monumental.hatnote.com;
listen 80;
root /home/hatnote/monumental/static/;
access_log /home/hatnote/monumental/logs/access.log combined buffer=128k flush=2s;
error_log /home/hatnote/monumental/logs/error.log;
client_max_body_size 20M;

# expires 1h;

location /be/ {
include uwsgi_params;

uwsgi_param X-Real-IP $remote_addr;
uwsgi_param Host $http_host;

rewrite /be(.*) /$1 break;
uwsgi_pass monumental_uwsgi;

}


location / {
include uwsgi_params;

uwsgi_param X-Real-IP $remote_addr;
uwsgi_param Host $http_host;

uwsgi_pass monumental_uwsgi;
}


listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/hatnote.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/hatnote.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot

if ($scheme != "https") {
return 301 https://$host$request_uri;
}

}
5 changes: 5 additions & 0 deletions config.default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
oauth_secret_token: "see README"
oauth_consumer_token: "see README"
cookie_secret: "ReplaceThisWithSomethingSomewhatSecret"
...
Empty file added logs/.gitignore
Empty file.
11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PyJWT==1.4.2
PyYAML==3.12
Werkzeug==0.9.4
argparse==1.4.0
clastic==0.4.3
mwoauth==0.2.8
oauthlib==2.0.1
requests==2.12.4
requests-oauthlib==0.7.0
six==1.10.0
wsgiref==0.1.2
Empty file added static/.gitignore
Empty file.

0 comments on commit e96be74

Please sign in to comment.