forked from crony/UpFast
Compare commits
No commits in common. "a5df50f43c15b7e2be50fdeebee3c5de8e473e32" and "9f8afe50546b5bc5b3a39272f48adcc54d3c9c68" have entirely different histories.
a5df50f43c
...
9f8afe5054
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,3 @@
|
|||||||
__pycache__
|
__pycache__
|
||||||
upload
|
upload
|
||||||
env
|
venv
|
||||||
|
@ -23,9 +23,9 @@ cd
|
|||||||
git clone https://code.cronyakatsuki.xyz/crony/upfast .
|
git clone https://code.cronyakatsuki.xyz/crony/upfast .
|
||||||
|
|
||||||
# Create the virtual environment and load it for user on default
|
# Create the virtual environment and load it for user on default
|
||||||
python3 -m venv env
|
python3 -m venv venv
|
||||||
# Activate the virtual environment
|
# Activate the virtual environment
|
||||||
source env/bin/activate
|
source venv/bin/activate
|
||||||
# Install all the requirements
|
# Install all the requirements
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
@ -52,7 +52,7 @@ Documentation=https://code.cronyakatsuki.xyz/crony/upfast
|
|||||||
User=upfast
|
User=upfast
|
||||||
Group=upfast
|
Group=upfast
|
||||||
WorkingDirectory=/usr/local/upfast/
|
WorkingDirectory=/usr/local/upfast/
|
||||||
ExecStart=/usr/local/upfast/env/bin/uvicorn main:app --host 127.0.0.1 --port 8000 --proxy-headers --forwarded-allow-ips='*'
|
ExecStart=/usr/local/upfast/venv/bin/uvicorn main:app --host 127.0.0.1 --port 8000 --proxy-headers --forwarded-allow-ips='*'
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
```
|
```
|
||||||
Finally run following commmands.
|
Finally run following commmands.
|
||||||
|
15
upfast-nginx
15
upfast-nginx
@ -1,15 +0,0 @@
|
|||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
|
|
||||||
server_name upfast.example.com ;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://127.0.0.1:8000;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_redirect off;
|
|
||||||
proxy_buffering off;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=UpFast service
|
|
||||||
Documentation=https://code.cronyakatsuki.xyz/crony/upfast
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
User=upfast
|
|
||||||
Group=upfast
|
|
||||||
WorkingDirectory=/usr/local/upfast/
|
|
||||||
ExecStart=/usr/local/upfast/env/bin/uvicorn main:app --host 127.0.0.1 --port 8000 --proxy-headers --forwarded-allow-ips='*'
|
|
||||||
Restart=on-failure
|
|
27
upfast.sh
27
upfast.sh
@ -1,27 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# quick install (and run) script for upfast using systemd
|
|
||||||
if [ $EUID -ne 0]
|
|
||||||
then
|
|
||||||
echo "Please run as root"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cp ./upfast.service /etc/systemd/system/upfast.service
|
|
||||||
|
|
||||||
useradd --shell /bin/sh --system --home-dir /usr/local/upfast upfast
|
|
||||||
mkdir -p /usr/local/upfast # dodge copying of skeletons
|
|
||||||
|
|
||||||
chown upfast:upfast /usr/local/upfast
|
|
||||||
chmod 700 /usr/local/upfast
|
|
||||||
|
|
||||||
su upfast -c'
|
|
||||||
cd
|
|
||||||
git clone https://git.craftmenners.men/upfast .
|
|
||||||
|
|
||||||
python3 -m venv env
|
|
||||||
. ./env/bin/activate
|
|
||||||
pip install -r requirements.txt
|
|
||||||
mkdir upload'
|
|
||||||
|
|
||||||
systemctl enable --now upfast.service
|
|
Loading…
Reference in New Issue
Block a user