forked from crony/UpFast
Compare commits
7 Commits
b376d91e21
...
5d47eb3243
Author | SHA1 | Date | |
---|---|---|---|
|
5d47eb3243 | ||
|
9f8afe5054 | ||
|
edc99c3481 | ||
|
8fdc68b441 | ||
dcda0f372a | |||
09d2c4f863 | |||
9abd361c7f |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,3 @@
|
|||||||
__pycache__
|
__pycache__
|
||||||
upload
|
upload
|
||||||
env
|
venv
|
||||||
|
@ -29,9 +29,6 @@ source env/bin/activate
|
|||||||
# Install all the requirements
|
# Install all the requirements
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
# Load environment by default
|
|
||||||
echo "source /usr/local/upfast/venv/bin/activate" > "/usr/local/upfast/.profile"
|
|
||||||
|
|
||||||
# create the upload directory
|
# create the upload directory
|
||||||
mkdir upload
|
mkdir upload
|
||||||
|
|
||||||
@ -99,3 +96,7 @@ server {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Contributions
|
||||||
|
|
||||||
|
Thanks [TLasT](https://craftmenners.men) on his help with testing and documentation.
|
||||||
|
@ -5,8 +5,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
background: #303446;
|
background: #81a1c1;
|
||||||
color: #c6d0f5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@ -16,7 +15,7 @@ h1 {
|
|||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 40px;
|
margin: 40px;
|
||||||
color: #626880;
|
color: #2e3440;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -34,9 +33,9 @@ video {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #f2d5cf;
|
color: #ebcb8b;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-style: bold;
|
font-weight: bold;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,7 +44,7 @@ a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
background: #292c3c;
|
background: #2e3440;
|
||||||
font-size: 1am;
|
font-size: 1am;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
max-width: 800;
|
max-width: 800;
|
||||||
@ -54,6 +53,7 @@ pre {
|
|||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
|
color: #88c0d0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.file {
|
.file {
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
body {
|
body {
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
background: #303446;
|
background: #81a1c1;
|
||||||
color: #c6d0f5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -12,9 +11,9 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #f2d5cf;
|
color: #ebcb8b;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-style: bold;
|
font-weight: bold;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,8 +22,9 @@ a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
background: #414559;
|
background: #88c0d0;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
font-size: 105%;
|
font-size: 105%;
|
||||||
|
font-style: italic;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
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;
|
|
||||||
}
|
|
||||||
}
|
|
@ -22,6 +22,6 @@ git clone https://git.craftmenners.men/upfast .
|
|||||||
python3 -m venv env
|
python3 -m venv env
|
||||||
. ./env/bin/activate
|
. ./env/bin/activate
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
mkdir upload'
|
mkdir upload '
|
||||||
|
|
||||||
systemctl enable --now upfast.service
|
systemctl enable --now upfast.service
|
||||||
|
Loading…
Reference in New Issue
Block a user