{"id":4204,"date":"2023-05-15T14:42:28","date_gmt":"2023-05-15T12:42:28","guid":{"rendered":"https:\/\/tech.lobobrothers.com\/your-own-wetransfer-with-jirafeau\/"},"modified":"2025-02-06T15:08:07","modified_gmt":"2025-02-06T14:08:07","slug":"your-own-wetransfer-with-jirafeau","status":"publish","type":"post","link":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/","title":{"rendered":"Your own wetransfer with Jirafeau"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"4204\" class=\"elementor elementor-4204 elementor-3790\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-34bbd62 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"34bbd62\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6e02e9a\" data-id=\"6e02e9a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-003f168 elementor-widget elementor-widget-text-editor\" data-id=\"003f168\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h2><strong>JIRAFEAU<\/strong><\/h2>\n<p>This time we are going to talk about how to create your own wetransfer with jirafeau on Debian 11, a very powerful opensource software with a basic API that will allow you to automate many tasks.<\/p>\n<p>The first thing is to update your system<\/p>\n<p style=\"padding-left: 40px;\">apt-get update<\/p>\n<p style=\"padding-left: 40px;\">apt-get upgrade<\/p>\n<p style=\"padding-left: 40px;\">init 6<\/p>\n<p>Once updated we will install the following software<\/p>\n<p style=\"padding-left: 40px;\">apt-get\u00a0 install nginx php php-fpm certbot git<\/p>\n<p>And we will enable the nginx and php-fpm services<\/p>\n<p style=\"padding-left: 40px;\">systemctl enable &#8211;now nginx.service php7.4-fpm.service<\/p>\n<p>Next we will request the SSL certificate with certbot<\/p>\n<p style=\"padding-left: 40px;\">certbot certonly &#8211;webroot -m tuemail@example.com -d tudominio &#8211;agree-tos<\/p>\n<p>When it asks for the webroot, enter \/var\/www\/html<\/p>\n<p>If everything goes well, you will find the files in \/etc\/letsencrypt\/live\/yourdomain\/<\/p>\n<p>Once this is done, we will configure nginx by deleting the default site<\/p>\n<p style=\"padding-left: 40px;\">rm \/etc\/nginx\/sites-enabled\/default<\/p>\n<p>And now we create our site<\/p>\n<p style=\"padding-left: 40px;\">nano \/etc\/nginx\/sites-available\/tudominio.conf<\/p>\n<p>Pasting the following content, of course, replacing your domain name<\/p>\n<p style=\"padding-left: 40px;\">server {<br \/>\nlisten 80;<br \/>\nlisten [::]:80;<br \/>\nserver_name tudominio.com;<br \/>\nreturn 301 https:\/\/tudominio.com$request_uri;<br \/>\n}<br \/>\nserver {<br \/>\nlisten 443 ssl;<br \/>\nlisten [::]:443 ssl;<br \/>\nserver_name tudominio.com;<br \/>\nroot \/var\/www\/html\/jirafeau;<br \/>\nindex index.php;<\/p>\n<p style=\"padding-left: 40px;\">ssl_certificate \/etc\/letsencrypt\/live\/tudominio.com\/fullchain.pem;<br \/>\nssl_certificate_key \/etc\/letsencrypt\/live\/tudominio.com\/privkey.pem;<br \/>\nlocation ~ \\.php$ {<br \/>\nfastcgi_split_path_info ^(.+\\.php)(\/.+)$;<br \/>\nfastcgi_index index.php;<br \/>\nfastcgi_pass unix:\/var\/run\/php\/php7.4-fpm.sock;<br \/>\ninclude fastcgi_params;<br \/>\nfastcgi_param PATH_INFO $fastcgi_path_info;<br \/>\nfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br \/>\n}<br \/>\n}<\/p>\n<p>Now we create the symbolic link to activate it<\/p>\n<p style=\"padding-left: 40px;\">ln -s \/etc\/nginx\/sites-available\/tudominio.conf \/etc\/nginx\/sites-enabled\/<\/p>\n<p>We check that there are no errors in the configuration<\/p>\n<p style=\"padding-left: 40px;\">nginx -t<\/p>\n<p>And we recharge it<\/p>\n<p style=\"padding-left: 40px;\">systemctl reload nginx.service<\/p>\n<p>We will continue with the download and installation of <strong>Jirafeau<\/strong>, note that we first create the directory that we gave in the configuration file.<\/p>\n<p style=\"padding-left: 40px;\">mkdir \/var\/www\/html\/jirafeau<br \/>\ngit clone https:\/\/gitlab.com\/jirafeau\/Jirafeau.git \/var\/www\/html\/jirafeau<\/p>\n<p>We will also create the directory where the files will be stored outside of our webroot so that it is not accessible from the web server, for example, \/var\/data\/jirafeau<\/p>\n<p style=\"padding-left: 40px;\">mkdir -p \/var\/data\/jirafeau<\/p>\n<p>And we make www-data the owner of both this directory and the directory where it stores the configuration.<\/p>\n<p style=\"padding-left: 40px;\">chown -R www-data:www-data \/var\/www\/html\/jirafeau\/lib \/var\/data\/jirafeau<\/p>\n<p>Now you can access it from your browser via https:\/\/yourdomain.com, having to first enter the password you want for web administration. In the next step, enter the base address, that is, https:\/\/yourdomain.com\/ and the directory where the data will be \/var\/data\/jirafeau\/. We continue and after that it will work with the basic options that you have created in the file<\/p>\n<p style=\"padding-left: 40px;\">\/var\/www\/html\/jirafeau\/lib\/config.local.php<\/p>\n<p><strong>What options can we use here?<\/strong><\/p>\n<p>If we edit the file<\/p>\n<p style=\"padding-left: 40px;\">cat \/var\/www\/html\/jirafeau\/lib\/config.original.php<\/p>\n<p>We will be able to see all the available alternatives that we can copy and paste into our production file. It is in English but each option is very easy and intuitive. For example, if you want to upload files requiring a password, you just have to go to your configuration file and add the password as follows:<\/p>\n<p style=\"padding-left: 40px;\">&#8216;upload_password&#8217; =&gt;<br \/>\narray (<br \/>\n&#8216;password&#8217;<br \/>\n),<\/p>\n<p>You can add any password you want as indicated in the commented file. The options are many and very complete.<\/p>\n<p><strong>What about the API?<\/strong><\/p>\n<p>You can find the info at https:\/\/yourdomain.com\/script.php, where you even have a bash script. Just copy the content into a .sh file such as testapi.sh and give it execution permission chmod +x testapi.sh, then run it:<\/p>\n<p style=\"padding-left: 40px;\">.\/testapi.sh<\/p>\n<p>And he will give us back the help<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-3795 size-large\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es-1024x282.png\" alt=\"jirafeau help api\" width=\"800\" height=\"220\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es-1024x282.png 1024w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es-300x83.png 300w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es-768x211.png 768w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es-700x193.png 700w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/test-api-es.png 1032w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p>NOTE!!!! One detail is missing, we edit the testapi.sh file and we must add https:\/\/ in JIRAFEAU_URL before our domain.<\/p>\n<p><strong>FINALLY<\/strong><\/p>\n<p>Certbot already includes in this version the cron to auto-renew, but it will fail because in the certificate request we told it that our webroot is \/var\/www\/html\/ and we have installed it in \/var\/www\/html\/jirafeau\/ , in this case we have to edit the file:<\/p>\n<p style=\"padding-left: 40px;\">nano \/etc\/letsencrypt\/renewal\/tudominio.conf<\/p>\n<p>and in the [[webroot_map]] section we add the directory so that it looks like this:<\/p>\n<p style=\"padding-left: 40px;\">tudominio.com = \/var\/www\/html\/jirafeau<\/p>\n<p>We save and the autorenew will no longer fail. We can check it with:<\/p>\n<p style=\"padding-left: 40px;\">certbot renew &#8211;dry-run<\/p>\n<p>You know, if you have any questions, write a comment.<\/p>\n<p>TL.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-638c935 elementor-widget elementor-widget-heading\" data-id=\"638c935\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">FAQS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-71ebab1 elementor-widget elementor-widget-toggle\" data-id=\"71ebab1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"toggle.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-toggle\">\n\t\t\t\t\t\t\t<div class=\"elementor-toggle-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-1191\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-1191\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon elementor-toggle-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-closed\"><svg class=\"e-font-icon-svg e-fas-caret-right\" viewBox=\"0 0 192 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-opened\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-toggle-title\" tabindex=\"0\">What is Jirafeau and what are its main features?<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div id=\"elementor-tab-content-1191\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-1191\"><p>Jirafeau is an open source web application that makes file sharing easy. Features include:<\/p>\n<ul>\n<li><strong>One-click file upload and sharing:<\/strong> Allows you to upload a file and get a unique link to share it.<\/li>\n<li><strong>No database required:<\/strong> Works without requiring a database, making it simple to install and maintain.<\/li>\n<li><strong>Password protection:<\/strong> Provides the option to protect both file uploads and downloads with passwords.<\/li>\n<li><strong>Link expiration settings:<\/strong> Allows you to set an expiration time for download links, and even the option to self-destruct after a single download.<\/li>\n<li><strong>Large file support:<\/strong> Thanks to the HTML5 file API, Jirafeau can handle large file uploads without the usual PHP limitations.<\/li>\n<\/ul>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-toggle-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-1192\" class=\"elementor-tab-title\" data-tab=\"2\" role=\"button\" aria-controls=\"elementor-tab-content-1192\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon elementor-toggle-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-closed\"><svg class=\"e-font-icon-svg e-fas-caret-right\" viewBox=\"0 0 192 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-opened\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-toggle-title\" tabindex=\"0\">What are the advantages of using Jirafeau instead of WeTransfer or other similar services?<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div id=\"elementor-tab-content-1192\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"2\" role=\"region\" aria-labelledby=\"elementor-tab-title-1192\"><ul>\n<li><strong>Full control:<\/strong> By installing it on your own server, you have complete control over the files and their privacy.<\/li>\n<li><strong>No commercial limits:<\/strong> There are no restrictions on file size or number, only those you define.<\/li>\n<li><strong>Greater privacy:<\/strong> You do not depend on third parties that can analyze or store your files.<\/li>\n<li><strong>Simple interface:<\/strong> It allows you to share files with a single link without the need for registration.<\/li>\n<\/ul>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-toggle-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-1193\" class=\"elementor-tab-title\" data-tab=\"3\" role=\"button\" aria-controls=\"elementor-tab-content-1193\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon elementor-toggle-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-closed\"><svg class=\"e-font-icon-svg e-fas-caret-right\" viewBox=\"0 0 192 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-opened\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-toggle-title\" tabindex=\"0\">Can Jirafeau be installed on a cloud server?<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div id=\"elementor-tab-content-1193\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"3\" role=\"region\" aria-labelledby=\"elementor-tab-title-1193\"><p>Yes, you can deploy it on VPS or cloud services like AWS, DigitalOcean, or any other that supports PHP.<\/p>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-toggle-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-1194\" class=\"elementor-tab-title\" data-tab=\"4\" role=\"button\" aria-controls=\"elementor-tab-content-1194\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon elementor-toggle-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-closed\"><svg class=\"e-font-icon-svg e-fas-caret-right\" viewBox=\"0 0 192 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-toggle-icon-opened\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-toggle-title\" tabindex=\"0\">Can I customize Jirafeau's interface?<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div id=\"elementor-tab-content-1194\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"4\" role=\"region\" aria-labelledby=\"elementor-tab-title-1194\"><p>Yes, being open source, you can modify the design and appearance to suit your needs.<\/p>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<script type=\"application\/ld+json\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What is Jirafeau and what are its main features?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>Jirafeau is an open source web application that makes file sharing easy. Features include:<\\\/p>\\n<ul>\\n<li><strong>One-click file upload and sharing:<\\\/strong> Allows you to upload a file and get a unique link to share it.<\\\/li>\\n<li><strong>No database required:<\\\/strong> Works without requiring a database, making it simple to install and maintain.<\\\/li>\\n<li><strong>Password protection:<\\\/strong> Provides the option to protect both file uploads and downloads with passwords.<\\\/li>\\n<li><strong>Link expiration settings:<\\\/strong> Allows you to set an expiration time for download links, and even the option to self-destruct after a single download.<\\\/li>\\n<li><strong>Large file support:<\\\/strong> Thanks to the HTML5 file API, Jirafeau can handle large file uploads without the usual PHP limitations.<\\\/li>\\n<\\\/ul>\\n\"}},{\"@type\":\"Question\",\"name\":\"What are the advantages of using Jirafeau instead of WeTransfer or other similar services?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<ul>\\n<li><strong>Full control:<\\\/strong> By installing it on your own server, you have complete control over the files and their privacy.<\\\/li>\\n<li><strong>No commercial limits:<\\\/strong> There are no restrictions on file size or number, only those you define.<\\\/li>\\n<li><strong>Greater privacy:<\\\/strong> You do not depend on third parties that can analyze or store your files.<\\\/li>\\n<li><strong>Simple interface:<\\\/strong> It allows you to share files with a single link without the need for registration.<\\\/li>\\n<\\\/ul>\\n\"}},{\"@type\":\"Question\",\"name\":\"Can Jirafeau be installed on a cloud server?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>Yes, you can deploy it on VPS or cloud services like AWS, DigitalOcean, or any other that supports PHP.<\\\/p>\\n\"}},{\"@type\":\"Question\",\"name\":\"Can I customize Jirafeau's interface?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>Yes, being open source, you can modify the design and appearance to suit your needs.<\\\/p>\\n\"}}]}<\/script>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>JIRAFEAU This time we are going to talk about how to create your own wetransfer with jirafeau on Debian 11, a very powerful opensource software with a basic API that will allow you to automate many tasks. The first thing is to update your system apt-get update apt-get upgrade init 6 Once updated we will [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":3813,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[48,49,50],"tags":[],"class_list":["post-4204","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-infraestructures","category-linux-world","category-open-source"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Your own wetransfer with Jirafeau - LBT<\/title>\n<meta name=\"description\" content=\"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Your own wetransfer with Jirafeau - LBT\" \/>\n<meta property=\"og:description\" content=\"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog sobre linux y el mundo opensource\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LoboBrothers\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-15T12:42:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-06T14:08:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1313\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"TL\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TL\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\"},\"author\":{\"name\":\"TL\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\"},\"headline\":\"Your own wetransfer with Jirafeau\",\"datePublished\":\"2023-05-15T12:42:28+00:00\",\"dateModified\":\"2025-02-06T14:08:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\"},\"wordCount\":1008,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp\",\"articleSection\":[\"Cloud Infraestructures\",\"Linux World\",\"Open Source\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\",\"name\":\"Your own wetransfer with Jirafeau - LBT\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp\",\"datePublished\":\"2023-05-15T12:42:28+00:00\",\"dateModified\":\"2025-02-06T14:08:07+00:00\",\"description\":\"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate\",\"breadcrumb\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp\",\"width\":1920,\"height\":1313,\"caption\":\"Jirafeau\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/tech.lobobrothers.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Your own wetransfer with Jirafeau\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"name\":\"Tech LBT\",\"description\":\"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad\",\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\",\"name\":\"Lobo Brothers Technology\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"width\":110,\"height\":50,\"caption\":\"Lobo Brothers Technology\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/LoboBrothers\/\",\"https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\",\"name\":\"TL\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"caption\":\"TL\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Your own wetransfer with Jirafeau - LBT","description":"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/","og_locale":"en_US","og_type":"article","og_title":"Your own wetransfer with Jirafeau - LBT","og_description":"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate","og_url":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/","og_site_name":"Blog sobre linux y el mundo opensource","article_publisher":"https:\/\/www.facebook.com\/LoboBrothers\/","article_published_time":"2023-05-15T12:42:28+00:00","article_modified_time":"2025-02-06T14:08:07+00:00","og_image":[{"width":1920,"height":1313,"url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp","type":"image\/png"}],"author":"TL","twitter_card":"summary_large_image","twitter_misc":{"Written by":"TL","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#article","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/"},"author":{"name":"TL","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb"},"headline":"Your own wetransfer with Jirafeau","datePublished":"2023-05-15T12:42:28+00:00","dateModified":"2025-02-06T14:08:07+00:00","mainEntityOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/"},"wordCount":1008,"commentCount":0,"publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp","articleSection":["Cloud Infraestructures","Linux World","Open Source"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/","url":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/","name":"Your own wetransfer with Jirafeau - LBT","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp","datePublished":"2023-05-15T12:42:28+00:00","dateModified":"2025-02-06T14:08:07+00:00","description":"Install your own wetransfer with Jirafeau, an opensource software with a very functional basic API to automate","breadcrumb":{"@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#primaryimage","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2023\/05\/jirafeau.png.webp","width":1920,"height":1313,"caption":"Jirafeau"},{"@type":"BreadcrumbList","@id":"https:\/\/tech.lobobrothers.com\/en\/your-own-wetransfer-with-jirafeau\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/tech.lobobrothers.com\/en\/"},{"@type":"ListItem","position":2,"name":"Your own wetransfer with Jirafeau"}]},{"@type":"WebSite","@id":"https:\/\/tech.lobobrothers.com\/en\/#website","url":"https:\/\/tech.lobobrothers.com\/en\/","name":"Tech LBT","description":"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad","publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tech.lobobrothers.com\/en\/#organization","name":"Lobo Brothers Technology","url":"https:\/\/tech.lobobrothers.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","width":110,"height":50,"caption":"Lobo Brothers Technology"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LoboBrothers\/","https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true"]},{"@type":"Person","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb","name":"TL","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","caption":"TL"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/4204","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/comments?post=4204"}],"version-history":[{"count":2,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/4204\/revisions"}],"predecessor-version":[{"id":8111,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/4204\/revisions\/8111"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media\/3813"}],"wp:attachment":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media?parent=4204"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/categories?post=4204"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/tags?post=4204"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}