{% extends "_layout.njk" %} {% block content %} {{ super() }}

What is safe.fiery.me?

This is a fork of lolisafe. GitHub repository of the fork is located here.

Will you keep my files forever?

Unless I receive a copyright complain or some other bullshit, I will.

How can I keep track of my uploads?

Simply create a user on the site and every upload will be associated with your account, granting you access to your uploaded files through our dashboard.

What are albums?

Albums are a simple way of sorting uploads together.
As long as you are logged in, you can create albums through the homepage or the dashboard,
then afterwards you can use them with our Firefox extension or Chrome extension,
which will enable you to right click -> send file to safe or to a desired album if you have any.
You will have to set the domain in the extension's settings to https://safe.fiery.me though.

Why should I use this?

I don't know.

I saw something too illegal for my tastes here, what should I do?

Send a strongly worded email to bobby@fiery.me and I will try to get back to you within 24 hours.

I found a bug! -or- I want to request a feature!

Feel free to create a GitHub issue here.
Or if you don't want to use GitHub, then you can also contact me through my email above.

Where is the server located at?

Paris, France.
We are using Cloudflare though, so you can expect your uploads to be delivered quickly all over the world after they have been cached.

Since my uploads are cached, what about after I delete them from the dashboard?

We will send API requests to Cloudflare to purge their cache immediately after you delete your uploads from the dashboard.
Cache of their thumbnails will also be purged, if applicable.

Do you have a No-JS uploader form?

{% if noJsMaxSize and chunkSize -%}

Why is the maximum file size in the No-JS uploader form smaller?

This site is using Cloudflare, which limits the maximum upload size.
Since the homepage uploader chunks your uploads through JS magic, it is possible to increase the maximum file size there.
{%- endif %} {% if chunkSize -%}

Does your API support chunked uploads?

Yes, the homepage uploader is hard-coded to chunk uploads into {{ chunkSize }} pieces by default.
If you want to chunk your API uploads, feel free to read the source code to see how it works.
{%- endif %}

What are the allowed extensions here?

{% if extensionsFilter.length and not whitelist -%} We support any file extensions except the following: {{ extensionsFilter | join(', ') }}. {%- elif extensionsFilter.length and whitelist -%} We only support the following extensions: {{ extensionsFilter | join(', ') }}. {%- else -%} We support any file extensions. {%- endif %}

How are the file URLs be determined?

The safe will generate random {{ fileLength.default }}-letter identifiers. {% if fileLength.userChangeable %}
If you find that too {{ "short" if tooShort else "long" }}, you can create an account which will let you to set your preferred length.
You can choose from {{ fileLength.min }} to {{ fileLength.max }} letters. {%- endif %}
{% endblock %}