建免费的临火狐 Fi系统11 搭时文件分享

简介

Firefox Send与传统的网盘不太一样,它是一种类似“阅后即焚”的简单且私密的临时个人文件共享工具 (网络服务),用户只需通过任意浏览器 (包括 Chrome、Edge、火狐等) 即可快速上传一个或多个文件与他人分享。目前最大可支持 2.5 GB 单个文件。感兴趣的可以直接访问 https://send.firefox.com 体验一下。

现在Firefox Send代码开源了,也有几个小伙伴搭建的时候遇到了点问题,要博主发个教程,这里就水一下手动搭建和Docker搭建。

手动安装

Github地址:https://github.com/mozilla/send

所需环境:Node.js 10+Redis,如果你服务器,特别是CentOS,内存512M或以下的话,建议加点虚拟内存,不然后面可能会安装失败,可查看文章《如何增加Swap虚拟内存?》。

1、安装Nodejs

#Debian/Ubuntu系统curl -sL https://deb.nodesource.com/setup_10.x | bash -apt install -y nodejs git#CentOS系统curl -sL https://rpm.nodesource.com/setup_10.x | bash -yum install nodejs -yyum -y groupinstall "Development Tools"

2、安装Redis
CenOS 6系统:

#安装EPELrpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm#安装Redisyum install redis git -y#启动Redisservice redis start#设置开机自启chkconfig redis on

CenOS 7系统:

#安装EPELrpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm#安装Redisyum install redis -y#启动Redissystemctl start redis#设置开机自启systemctl enable redis

Debian/Ubuntu系统:

apt install redis-server -y

3、安装Firefox Send

git clone https://github.com/mozilla/send.gitcd send#安装依赖npm install#构建生产环境npm run build#运行npm run prod

基本上官方安装方法是这样,不过貌似使用root用户构建生产环境的时候会有点小问题,普通用户倒是没问题的。

一般我们玩的服务器都是直接给的root用户,所以这里就需要新建一个普通用户进行构建操作。

先使用root登录SSH客户端,使用命令:

#新建一个moewah用户,指定该用户的主目录为/home/moewah#Debian/Ubuntu系统useradd -d /home/moewah -m moewah#CentOS系统,以下命令会自动给你创建一个/home/moewah主目录useradd moewah

然后继续使用命令:

#进入到/home/moewah目录下载send项目cd /home/moewahgit clone https://github.com/mozilla/send.git#将send目录用户权限改为新建用户moewahchown -R moewah:moewah send#切换moewah用户su - moewah#进入项目文件夹cd send#安装依赖npm install#构建生产环境npm run build#运行npm run prod

不出意外的话,构建和运行都没问题,不过运行的话root用户和新建的moewah用户都是可以运行的。

访问地址为ip:1443,然后一般情况下CentOS还需要开启防火墙1443端口,使用命令:

#CentOS 6iptables -I INPUT -p tcp --dport 1443 -j ACCEPTservice iptables saveservice iptables restart#CentOS 7firewall-cmd --zone=public --add-port=1443/tcp --permanentfirewall-cmd --reload

想要访问就需要使用域名反代,方法看后面。

Docker安装

1、安装Docker

#CentOS 6rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmyum update -yyum -y install docker-ioservice docker startchkconfig docker on#CentOS 7、Debian、Ubuntucurl -sSL https://get.docker.com/ | shsystemctl start dockersystemctl enable docker

2、拉取镜像

首先了解下Firefox Send一些变量→传送门,再使用命令启动镜像:

#将容器内部运行环境设置为生产,外部映射端口1443docker run --name send -d \  -p 1443:1443 \  -e NODE_ENV=production \  mozilla/send:latest

然后使用ip:1443访问即可,如果你想设置变量值,比如S3,直接使用-e参数即可,参考NODE_ENV用法。

域名反代

安装Caddy

wget -N --no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubiBackup/doubi/master/caddy_install.sh && chmod +x caddy_install.sh && bash caddy_install.sh#备用地址wget -N --no-check-certificate https://www.moewah.com/source/caddy_install.sh && chmod +x caddy_install.sh && bash caddy_install.sh

配置Caddy

#以下全部内容是一个整体,请修改域名后一起复制到SSH运行!#http访问,该配置不会自动签发SSLecho "www.moewah.com {  gzip proxy / 127.0.0.1:1443 {     header_upstream Host { host}    header_upstream X-Real-IP { remote}    header_upstream X-Forwarded-For { remote}    header_upstream X-Forwarded-Proto { scheme}  }}" > /usr/local/caddy/Caddyfile#https访问,该配置会自动签发SSL,请提前解析域名到VPS服务器echo "www.moewah.com {  gzip tls admin@moewah.com proxy / 127.0.0.1:1443 {     header_upstream Host { host}    header_upstream X-Real-IP { remote}    header_upstream X-Forwarded-For { remote}    header_upstream X-Forwarded-Proto { scheme}  }}" > /usr/local/caddy/Caddyfile

tls参数会自动帮你签发ssl证书,如果你要使用自己的ssl,改为tls /root/xx.crt /root/xx.key即可。后面为ssl证书路径。

启动Caddy

/etc/init.d/caddy start

就可以打开域名进行访问了。

如果你使用其它的,比如Nginx,这里就大概发个反代配置,直接添加到配置文件即可。

#在配置文件里添加location / {      proxy_pass http://127.0.0.1:1443;     proxy_redirect off;     proxy_set_header X-Real-IP $remote_addr;     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;    }
上一篇:水煮肉片怎么做最好吃 做好3个关键步骤 肉片滑嫩鲜香 好下饭
下一篇:谷歌Chrome浏览器内置谷歌翻译功能无法使用怎么办?(解决方法)