diff --git a/deploy/apache.conf b/deploy/apache.conf
new file mode 100644
index 000000000..a9f427fac
--- /dev/null
+++ b/deploy/apache.conf
@@ -0,0 +1,126 @@
+# Following variables should be modified according to your setup
+Define funkwhale-api http://192.168.1.199:5000
+Define funkwhale-api-ws ws://192.168.1.199:5000
+Define funkwhale-sn funkwhale.duckdns.org
+Define MUSIC_DIRECTORY_PATH /music/directory/path
+
+
+# HTTP request redirected to HTTPS
+
+ ServerName ${funkwhale-sn}
+
+ # Default is to force https
+ RewriteEngine on
+ RewriteCond %{SERVER_NAME} =${funkwhale-sn}
+ RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
+
+
+ Options None
+ Require all granted
+
+
+
+
+
+
+
+ ServerName ${funkwhale-sn}
+
+ # Path to ErrorLog and access log
+ ErrorLog ${APACHE_LOG_DIR}/funkwhale/error.log
+ CustomLog ${APACHE_LOG_DIR}/funkwhale/access.log combined
+
+ # TLS
+ # Feel free to use your own configuration for SSL here or simply remove the
+ # lines and move the configuration to the previous server block if you
+ # don't want to run funkwhale behind https (this is not recommanded)
+ # have a look here for let's encrypt configuration:
+ # https://certbot.eff.org/all-instructions/#debian-9-stretch-nginx
+ SSLEngine on
+ SSLProxyEngine On
+ SSLCertificateFile /etc/letsencrypt/live/${funkwhale-sn}/fullchain.pem
+ SSLCertificateKeyFile /etc/letsencrypt/live/${funkwhale-sn}/privkey.pem
+ Include /etc/letsencrypt/options-ssl-apache.conf
+
+
+ DocumentRoot /srv/funkwhale/front/dist
+
+ FallbackResource /index.html
+
+ # Configure Proxy settings
+ # ProxyPreserveHost pass the original Host header to the backend server
+ ProxyVia On
+ ProxyPreserveHost On
+
+ RemoteIPHeader X-Forwarded-For
+
+
+ # Turning ProxyRequests on and allowing proxying from all may allow
+ # spammers to use your proxy to send email.
+ ProxyRequests Off
+
+
+ AddDefaultCharset off
+ Order Allow,Deny
+ Allow from all
+ # Here you can set a password using htpasswd to protect your proxy server
+ #Authtype Basic
+ #Authname "Password Required"
+ #AuthUserFile /etc/apache2/.htpasswd
+ #Require valid-user
+
+
+ # Activating WebSockets (not working)
+ ProxyPass "/api/v1/instance/activity" "ws://192.168.1.199:5000/api/v1/instance/activity"
+
+
+ # similar to nginx 'client_max_body_size 30M;'
+ LimitRequestBody 31457280
+
+ ProxyPass ${funkwhale-api}/api
+ ProxyPassReverse ${funkwhale-api}/api
+
+
+ ProxyPass ${funkwhale-api}/federation
+ ProxyPassReverse ${funkwhale-api}/federation
+
+
+
+ ProxyPass ${funkwhale-api}/.well-known/webfinger
+ ProxyPassReverse ${funkwhale-api}/.well-known/webfinger
+
+
+ Alias /media /srv/funkwhale/data/media
+
+ # Following alias is bypassing the auth check done in nginx
+ Alias /_protected/media /srv/funkwhale/data/media
+
+ Alias /staticfiles /srv/funkwhale/data/static
+
+ # Setting appropriate access levels to serve frontend
+
+ Options FollowSymLinks
+ AllowOverride None
+ Require all granted
+
+
+
+ Options FollowSymLinks
+ AllowOverride None
+ Require all granted
+
+
+ # XSendFile is serving audio files
+ # WARNING : permissions on paths specified below overrides previous definition,
+ # everything under those paths is potentially exposed.
+ # Following directive may be needed to ensure xsendfile is loaded
+ #LoadModule xsendfile_module modules/mod_xsendfile.so
+
+ XSendFile On
+ XSendFilePath /srv/funkwhale/data/media
+ XSendFilePath ${MUSIC_DIRECTORY_PATH}
+ SetEnv MOD_X_SENDFILE_ENABLED 1
+
+
+
+