1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 01:13:22 -05:00

One day the docker stuff will work.

This commit is contained in:
Drew Larson 2017-01-15 19:39:17 -06:00
parent de7a4b6d46
commit 6c13d4be8c
3 changed files with 9 additions and 2 deletions

View File

@ -126,7 +126,7 @@ STATICFILES_DIRS = [
('vendor', os.path.join(BASE_DIR, 'vendor')), ('vendor', os.path.join(BASE_DIR, 'vendor')),
os.path.join(BASE_DIR, 'assets') os.path.join(BASE_DIR, 'assets')
] ]
STATIC_ROOT = 'STATIC'
STATIC_URL = '/static/' STATIC_URL = '/static/'
AUTH_USER_MODEL = 'registration.CustomUser' AUTH_USER_MODEL = 'registration.CustomUser'

View File

@ -1,2 +1,5 @@
FROM nginx:alpine FROM nginx
RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' | tee /etc/apt/sources.list.d/backports.list
RUN apt-get update
RUN apt-get install -y python-certbot -t jessie-backports
COPY conf/* /etc/nginx/conf.d/ COPY conf/* /etc/nginx/conf.d/

View File

@ -33,6 +33,10 @@ server {
try_files $uri @proxy_to_app; try_files $uri @proxy_to_app;
} }
location /static {
root /code/static;
}
location @proxy_to_app { location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# enable this if and only if you use HTTPS # enable this if and only if you use HTTPS