diff options
author | Dave Cole <dave@developmentseed.org> | 2013-04-09 18:26:13 -0400 |
---|---|---|
committer | Dave Cole <dave@developmentseed.org> | 2013-04-09 18:26:13 -0400 |
commit | 809a9b5204804ef36bae56f04eb640ab342fd381 (patch) | |
tree | a9a20765f2c84a1027a01a6713395bfb54ed6a8e /config/nginx | |
parent | e28985afe274e46086f73d20ac6cebc7710204d4 (diff) |
Reorganize app to use external scripts. Make main file executable. Move sample code to readme. Refs #40.
Diffstat (limited to 'config/nginx')
-rw-r--r-- | config/nginx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/config/nginx b/config/nginx deleted file mode 100644 index 07b5ece..0000000 --- a/config/nginx +++ /dev/null @@ -1,17 +0,0 @@ -server { - root /usr/share/nginx/www; - index index.html index.htm; - - # Make site accessible from http://localhost/ - server_name localhost; - - location / { - # First attempt to serve request as file, then - # as directory, then fall back to index.html - try_files $uri $uri/ /index.html; - - # Optional basic auth restriction - # auth_basic "Restricted"; - # auth_basic_user_file /etc/nginx/.htpasswd; - } -} |