@@ -64,8 +64,9 @@ deploy.config:
64
64
- |-
65
65
if [[ "${ES_ENABLED}" != "false" ]]
66
66
then
67
- bundle exec rake chewy: deploy
67
+ bin/tootctl search deploy
68
68
fi
69
+ - bin/tootctl cache clear
69
70
70
71
71
72
web.web :
@@ -120,77 +121,6 @@ worker.sidekiq:
120
121
- public/system
121
122
122
123
123
- worker.cron_only :
124
- start : sleep 365d
125
-
126
- writable_dirs :
127
- - tmp
128
-
129
- log_watch :
130
- rake : ' log/production.log'
131
-
132
- network_dirs :
133
- data.storage :
134
- - public/system
135
-
136
- cron :
137
- # 20:00 (8 pm), server time: send out the daily digest emails to everyone
138
- # who opted to receive one
139
- - id : send_digest_emails
140
- schedule : ' 00 20 * * *'
141
- command : ' bundle exec rake mastodon:emails:digest'
142
-
143
- # 00:10 (ten past midnight), server time: remove local copies of remote
144
- # users' media once they are older than a certain age (use NUM_DAYS evar to
145
- # change this from the default of 7 days)
146
- - id : clear_remote_media
147
- schedule : ' 10 00 * * *'
148
- command : ' bundle exec rake mastodon:media:remove_remote'
149
-
150
- # 00:20 (twenty past midnight), server time: remove subscriptions to remote
151
- # users that nobody follows locally (anymore)
152
- - id : clear_unfollowed_subs
153
- schedule : ' 20 00 * * *'
154
- command : ' bundle exec rake mastodon:push:clear'
155
-
156
- # 00:30 (half past midnight), server time: update local copies of remote
157
- # users' avatars to match whatever they currently have set on their profile
158
- - id : update_remote_avatars
159
- schedule : ' 30 00 * * *'
160
- command : ' bundle exec rake mastodon:media:redownload_avatars'
161
-
162
- # ###########################################################################
163
- # This task is one you might want to enable, or might not. It keeps disk
164
- # usage low, but makes "shadow bans" (scenarios where the user is silenced,
165
- # but not intended to be made aware that the silencing has occurred) much
166
- # more difficult to put in place, as users would then notice their media is
167
- # vanishing on a regular basis. Enable it if you aren't worried about users
168
- # knowing they've been silenced (on the instance level), and want to save
169
- # disk space. Leave it disabled otherwise.
170
- # ###########################################################################
171
- # # 00:00 (midnight), server time: remove media posted by silenced users
172
- # - id: clear_silenced_media
173
- # schedule: '00 00 * * *'
174
- # command: 'bundle exec rake mastodon:media:remove_silenced'
175
-
176
- # ###########################################################################
177
- # The following two tasks can be uncommented to automatically open and close
178
- # registrations on a schedule. The format of 'schedule' is a standard cron
179
- # time expression: minute hour day month day-of-week; search for "cron
180
- # time expressions" for more info on how to set these up. The examples here
181
- # open registration only from 8 am to 4 pm, server time.
182
- # ###########################################################################
183
- # # 08:00 (8 am), server time: open registrations so new users can join
184
- # - id: open_registrations
185
- # schedule: '00 08 * * *'
186
- # command: 'bundle exec rake mastodon:settings:open_registrations'
187
- #
188
- # # 16:00 (4 pm), server time: close registrations so new users *can't* join
189
- # - id: close_registrations
190
- # schedule: '00 16 * * *'
191
- # command: 'bundle exec rake mastodon:settings:close_registrations'
192
-
193
-
194
124
data.db :
195
125
image : nanobox/postgresql:9.6
196
126
0 commit comments