Skip to content

Commit

Permalink
modified: https/nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoch committed Jun 5, 2017
1 parent bbc28b3 commit d8c79d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions https/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen *:80;
server_name word.fish;
server_name localhost;

client_max_body_size 1024M; # allows file uploads up to XXX megabytes
client_body_buffer_size 1024M; # this is for in memory uploading of images
Expand Down Expand Up @@ -34,7 +34,7 @@ server {
server {

listen 443;
server_name word.fish;
server_name localhost;

root html;
client_max_body_size 1024M;
Expand Down
8 changes: 4 additions & 4 deletions sendit/apps/main/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def get_label(self):
return "study"

class Meta:
app_label = 'images'
app_label = 'main'



Expand All @@ -120,7 +120,7 @@ def get_label(self):
return "series"

class Meta:
app_label = 'images'
app_label = 'main'


def get_absolute_url(self):
Expand All @@ -146,7 +146,7 @@ def get_label(self):
return "image"

class Meta:
app_label = 'images'
app_label = 'main'

# Get the url for a report collection
def get_absolute_url(self):
Expand Down Expand Up @@ -176,4 +176,4 @@ def get_label(self):
return "series"

class Meta:
app_label = 'images'
app_label = 'main'

0 comments on commit d8c79d3

Please sign in to comment.