-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed36d6f
commit 48fb1f5
Showing
13 changed files
with
34 additions
and
104 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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
SECRET_KEY= | ||
NODE_ID=0 | ||
NODE_NAME="" | ||
# MANAGER_URL="localhost:8000" | ||
MANAGER_URL=manager:8000 | ||
TOKEN= | ||
SMB_USER=amuman | ||
SMB_PASSWORD= | ||
SMB_URL=//..../ | ||
SMB_MOUNT_POINT=/nas | ||
DOMAIN=example.com | ||
SECRET_KEY=random_string | ||
DJANGO_SUPERUSER_EMAIL=[email protected] | ||
DJANGO_SUPERUSER_USERNAME=admin | ||
DJANGO_SUPERUSER_PASSWORD=random_string |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
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
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
File renamed without changes.
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
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 |
---|---|---|
@@ -1,21 +1,19 @@ | ||
server { | ||
client_max_body_size 1G; | ||
|
||
listen 80; | ||
|
||
server_name localhost; | ||
|
||
location /api/ { | ||
proxy_pass http://amuman-manager-staging:8000; | ||
proxy_pass http://amuman-manager:8000; | ||
} | ||
location /admin/ { | ||
proxy_pass http://amuman-manager-staging:8000; | ||
proxy_pass http://amuman-manager:8000; | ||
} | ||
location /static/ { | ||
proxy_pass http://amuman-manager-staging:8000; | ||
proxy_pass http://amuman-manager:8000; | ||
} | ||
|
||
location / { | ||
proxy_pass http://amuman-frontend-staging:3000/; | ||
proxy_pass http://amuman-frontend:3000/; | ||
} | ||
} |