mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing overflow wrapping on commenter avatars on sharebar on web.
This commit is contained in:
parent
d2ae291723
commit
01b31137df
3 changed files with 9 additions and 1 deletions
|
@ -1,11 +1,13 @@
|
|||
/srv/newsblur/logs/*.log {
|
||||
daily
|
||||
size 50M
|
||||
rotate 10
|
||||
copytruncate
|
||||
delaycompress
|
||||
compress
|
||||
notifempty
|
||||
missingok
|
||||
su sclay
|
||||
}
|
||||
|
||||
/var/log/nginx/*.log {
|
||||
|
@ -29,4 +31,4 @@
|
|||
postrotate
|
||||
reload rsyslog >/dev/null 2>&1 || true
|
||||
endscript
|
||||
}
|
||||
}
|
||||
|
|
2
fabfile.py
vendored
2
fabfile.py
vendored
|
@ -496,6 +496,8 @@ def switch_forked_mongoengine():
|
|||
def setup_logrotate():
|
||||
put('config/logrotate.conf', '/etc/logrotate.d/newsblur', use_sudo=True)
|
||||
put('config/logrotate.mongo.conf', '/etc/logrotate.d/mongodb', use_sudo=True)
|
||||
sudo('chown root.root /etc/logrotate.d/{newsblur,mongodb}')
|
||||
sudo('chmod 644 /etc/logrotate.d/{newsblur,mongodb}')
|
||||
|
||||
def setup_ulimit():
|
||||
# Increase File Descriptor limits.
|
||||
|
|
|
@ -2819,6 +2819,10 @@ background: transparent;
|
|||
.NB-story-share-profiles.NB-story-share-profiles-shares .NB-story-share-profile {
|
||||
float: right;
|
||||
}
|
||||
.NB-story-share-profiles .NB-story-share-profiles-comments-friends,
|
||||
.NB-story-share-profiles .NB-story-share-profiles-comments-public {
|
||||
float: left;
|
||||
}
|
||||
.NB-story-share-profiles .NB-story-share-profiles-shares-public,
|
||||
.NB-story-share-profiles .NB-story-share-profiles-shares-friends {
|
||||
display: inline;
|
||||
|
|
Loading…
Add table
Reference in a new issue