-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Location of static_content and css directories #172
Comments
Hi Xavier, |
There is likely a similar issue with the pictures directory, which is located within staticdir too (and is also not created, like the css dir that got fixed with 85a6217) |
Changes look done. I'll close this issue. |
Reopened to fix bug described in PR above. |
Fix bug by change of issue #172 by ikedas
Seems fixed. Close. |
Hi,
My understanding is the static_content name comes from the fact that it is statically served by the http server, while the remaining is served by cgi.$datadir$ .$datadir$ , but would seems to better fit into $localstatedir$ .$localstatedir$ while the static_content directory is installed into $datadir. This would probably mean the http conf needs to be tweaked to acknowledge for this change.
Most of what is installed in static_content directory is indeed data that does not change (fonts, javascripts) and thus can be installed readonly and owned by root user. This seems to fit well to
The only exception is the css subdirectory, which holds content dynamically generated by sympa and thus needs to be writeable by sympa user. As this is a subdirectory of static_content, this gets installed into
I would suggest to split location of the css directory from the location of the static_content directory. The css directory could then be installed into
Does that make sense ?
Regards,
Xavier
The text was updated successfully, but these errors were encountered: