Try 2 to get static files working.
This commit is contained in:
parent
ecc2b6a68f
commit
d541c1cff9
2 changed files with 2 additions and 2 deletions
|
@ -35,4 +35,4 @@ container_commands:
|
||||||
|
|
||||||
option_settings:
|
option_settings:
|
||||||
"aws:elasticbeanstalk:container:python:staticfiles":
|
"aws:elasticbeanstalk:container:python:staticfiles":
|
||||||
"/static/": "static/"
|
"/static": "static/"
|
|
@ -6,7 +6,7 @@ WSGIRestrictEmbedded On
|
||||||
|
|
||||||
<VirtualHost *:80>
|
<VirtualHost *:80>
|
||||||
|
|
||||||
Alias /static /opt/python/current/app/
|
Alias /static /opt/python/current/app/static/
|
||||||
<Directory /opt/python/current/app/>
|
<Directory /opt/python/current/app/>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
|
|
Reference in a new issue