You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is the short answer for the most commonly asked questions about uploading files through ArozOS:
Can I Upload Large Files to ArozOS via Cloudflare free accounts?
Answer: YES
The upload logic of ArozOS is designed as follows.
File Size
Upload Method
Temp-file
Fallback
< 4MB
POST (multipart)
RAM
None
< (tmp_space/16) - 1KB
websocket (byte slices)
tmp/
POST
Otherwise
websocket (byte slices)
target disk (.cache folder)
POST
Under normal situation, there will never have a POST request larger than 100MB (the limit of FORM POST size of Cloudflare Free Account at the time of writing) send over to the server. For the tmp folder size, it is recommended to use a fast storage medium (e.g. NVME SSD) with space 4 - 8 times the maximum allowed upload file size.
Can I Use ArozOS Behind a Reverse Proxy Server (nginx / Apache)?
Answer: YES
It is required to proxy both websocket and HTTP request. Here is an example apache config for ArozOS reverse proxy. Edit /etc/apache2/sites-available/000-default.conf and add the following contents.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Here is the short answer for the most commonly asked questions about uploading files through ArozOS:
Can I Upload Large Files to ArozOS via Cloudflare free accounts?
Answer: YES
The upload logic of ArozOS is designed as follows.
Under normal situation, there will never have a POST request larger than 100MB (the limit of FORM POST size of Cloudflare Free Account at the time of writing) send over to the server. For the tmp folder size, it is recommended to use a fast storage medium (e.g. NVME SSD) with space 4 - 8 times the maximum allowed upload file size.
Can I Use ArozOS Behind a Reverse Proxy Server (nginx / Apache)?
Answer: YES
It is required to proxy both websocket and HTTP request. Here is an example apache config for ArozOS reverse proxy. Edit
/etc/apache2/sites-available/000-default.conf
and add the following contents.(Feel free to add comments below if there are new questions or solutions)
Beta Was this translation helpful? Give feedback.
All reactions