-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add back a bunch of misc logistical files from the original monumenta…
…l repo
- Loading branch information
Showing
6 changed files
with
92 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,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. |
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,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; | ||
} | ||
|
||
} |
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,5 @@ | ||
--- | ||
oauth_secret_token: "see README" | ||
oauth_consumer_token: "see README" | ||
cookie_secret: "ReplaceThisWithSomethingSomewhatSecret" | ||
... |
Empty file.
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,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.