All files in static should be world readable.
This commit is contained in:
parent
fea99e7c01
commit
f7c22b3f16
1 changed files with 2 additions and 0 deletions
|
@ -13,5 +13,7 @@ os.path.walk("www", compileDir, "")
|
||||||
os.system("find www -type d -exec chmod gu+rx {} \;")
|
os.system("find www -type d -exec chmod gu+rx {} \;")
|
||||||
os.system("find www -type f -exec chmod gu+r {} \;")
|
os.system("find www -type f -exec chmod gu+r {} \;")
|
||||||
os.system("find www -type d -exec chmod o+x {} \;")
|
os.system("find www -type d -exec chmod o+x {} \;")
|
||||||
|
os.system("find www/conservancy/static -type d -exec chmod o+rx {} \;")
|
||||||
|
os.system("find www/conservancy/static -exec chmod o+r {} \;")
|
||||||
os.system("find www -exec chgrp www-data {} \;")
|
os.system("find www -exec chgrp www-data {} \;")
|
||||||
os.system("find www -exec chmod go-w {} \;")
|
os.system("find www -exec chmod go-w {} \;")
|
||||||
|
|
Loading…
Reference in a new issue