add selfhosting tutorials

This commit is contained in:
oxeo0 2025-05-06 19:51:39 +02:00
parent 95c33c8b41
commit cc3824e6a2
1900 changed files with 32727 additions and 0 deletions

BIN
4get/0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
4get/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

129
4get/index.md Normal file
View file

@ -0,0 +1,129 @@
# 4get Setup
![](0.png)
In this tutorial we'll setup 4get, a privacy front-end to browse the web:
## **Initial Setup**
Clone the repository and edit the docker-compose file before running it:
[ Datura ] [ /dev/pts/8 ] [/srv]
→ apt install nginx docker.io docker-compose
[ Datura ] [ /dev/pts/8 ] [/srv]
→ git clone https://git.lolcat.ca/lolcat/4get
Cloning into '4get'...
remote: Enumerating objects: 772, done.
remote: Counting objects: 100% (772/772), done.
remote: Compressing objects: 100% (639/639), done.
remote: Total 772 (delta 410), reused 275 (delta 117), pack-reused 0
Receiving objects: 100% (772/772), 2.19 MiB | 22.00 MiB/s, done.
Resolving deltas: 100% (410/410), done.
[ Datura ] [ /dev/pts/8 ] [/srv]
→ cd 4get
[ Datura ] [ /dev/pts/8 ] [/srv/4get]
→ vim docker-compose.yaml
[ Datura ] [ /dev/pts/8 ] [/srv/4get]
→ vim ../invidious/docker-compose.yml
[ Datura ] [ /dev/pts/8 ] [/srv/4get]
→ vim docker-compose.yaml
[ Datura ] [ /dev/pts/8 ] [/srv/4get]
→ cat docker-compose.yaml
version: "3.7"
services:
fourget:
image: luuul/4get:latest
restart: always
environment:
- FOURGET_SERVER_NAME=4get.nowhere.moe
- FOURGET_SERVER_ADMIN_EMAIL="you@example.com"
ports:
- "127.0.0.1:8080:80"
#- "127.0.0.1:4443:443"
volumes:
#- /root/.acme.sh/4get.nowhere.moe/:/etc/4get/certs
- ./banners:/var/www/html/4get/banner
- ./captchas:/var/www/html/4get/data/captcha
[ Datura ] [ /dev/pts/8 ] [/srv/4get]
→ docker-compose up -d
Then use the following nginx configuration :
[ Datura ] [ /dev/pts/9 ] [~]
→ vim /etc/nginx/sites-available/4get.nowhere.moe.conf
[ Datura ] [ /dev/pts/9 ] [~]
→ cat /etc/nginx/sites-available/4get.nowhere.moe.conf
server {
listen 80;
listen [::]:80;
server_name 4get.nowhere.moe;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
######## TOR CHANGES ########
#listen 4443;
#listen [::]:4443;
#server_name 4get.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion;
add_header Onion-Location "http://4get.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion$request_uri" always;
######## TOR CHANGES ########
server_name 4get.nowhere.moe;
access_log off;
error_log /var/log/nginx/error.log crit;
ssl_certificate /root/.acme.sh/4get.nowhere.moe/fullchain.cer;
ssl_certificate_key /root/.acme.sh/4get.nowhere.moe/4get.nowhere.moe.key;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host; # so Invidious knows domain
proxy_http_version 1.1; # to keep alive
proxy_set_header Connection ""; # to keep alive
}
if ($https = '') { return 301 https://$host$request_uri; } # if not connected to HTTPS, perma-redirect to HTTPS
}
[ Datura ] [ /dev/pts/9 ] [~]
→ systemctl stop nginx ; acme.sh --issue --standalone -d 4get.nowhere.moe -k 4096 ; systemctl start nginx
[ Datura ] [ /dev/pts/9 ] [~]
→ nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[ Datura ] [ /dev/pts/9 ] [~]
→ nginx -s reload
Then simply browse to the URL:
![](1.png)

BIN
Gitea/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
Gitea/10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
Gitea/11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
Gitea/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
Gitea/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
Gitea/4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
Gitea/5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
Gitea/6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
Gitea/7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
Gitea/8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
Gitea/9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
Gitea/Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

286
Gitea/index.md Normal file
View file

@ -0,0 +1,286 @@
# Gitea Setup (nginx, postgresql, debian10)
![](Logo.png)
Before we start, you will need a Debian 10 VPS (you can get one on digitalocean for example), if you prefer to use your own self hosted server, make sure that port 80 and 443 are correctly port forwarded so that the public ip points to the server and not the router. Once that's done, go and ssh into your debian 10 server.
## **Initial Setup**
adduser --system --shell /bin/bash --group --disabled-password --home /home/git git
wget -O /usr/local/bin/gitea https://dl.gitea.io/gitea/1.12.5/gitea-1.12.5-linux-amd64
chmod +x /usr/local/bin/gitea
./gitea
mkdir -p /var/lib/gitea/{custom,data,indexers,public,log}
chown git:git /var/lib/gitea/{data,indexers,log}
chmod 750 /var/lib/gitea/{data,indexers,log}
mkdir /etc/gitea
chown root:git /etc/gitea
chmod 770 /etc/gitea
wget https://raw.githubusercontent.com/go-gitea/gitea/master/contrib/systemd/gitea.service
nano gitea.service
Now in nano, you need to add the **After=postgresql.service** line, once that's done, hit CTRL+S to save, and CTRL+X to exit.
![](1.png)
cp gitea.service /etc/systemd/system/
systemctl enable gitea
Next we'll setup postgresql:
apt-get -y install apt-transport-https lsb-release ca-certificates curl gnupg -y
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt update -y
apt install postgresql-13 -y
su -c "psql" - postgres
CREATE ROLE gitea WITH LOGIN PASSWORD 'gitea';
CREATE DATABASE giteadb WITH OWNER gitea TEMPLATE template0 ENCODING UTF8 LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';
exit
Next we'll configure Nginx:
apt install nginx -y
Here we're going to use [DuckDNS](https://www.duckdns.org/) because it is a free way to get a domain name, but if you have your own paid domain name, you can use it too.
![](3.png) ![](2.png)
Once that's done, we will setup acme.sh to get a free letsencrypt certificate:
apt install socat -y
wget -O - https://get.acme.sh | sh
source ~/.bashrc
systemctl stop nginx
acme.sh --issue --standalone -d ech2.duckdns.org -k 4096
systemctl start nginx
![](4.png)
Once this is done, download the nginx configuration for gitea:
wget https://blog.nowhere.moe/servers/Gitea/gitea.conf -O /etc/nginx/sites-enabled/gitea.conf
nano /etc/nginx/sites-enabled/gitea.conf
cat /etc/nginx/sites-enabled/gitea.conf
#if you're doing a gitea setup behind a reverse nginx proxy, it would look like so:
server {
listen 80;
listen [::]:80;
server_name git.nowhere.moe;
location / {
client_max_body_size 1000m;
proxy_pass http://localhost:3000;
}
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 5000m;
}
# and then on the main reverse nginx proxy you would edit the ssl certificates:
![](5.png)
Once you're done editing your domain name inside the config, hit CTRL+S to save, and CTRL+X to exit nano and reload nginx:
nginx -t
nginx -s reload
apt install git
systemctl start postgresql gitea
Once that's done simply browse to your website and set it up after clicking the "register button":
![](6.png) ![](7.png)
Here in this example i intend to use gitea for my own use, but if you want to have multiple users here, you can untick "disable self registration", If it is for only one user, tick it and create the administrator user at the bottom of the page:
![](8.png)
Once that's done, hit "install gitea" and then we go back into the ssh root shell to change the directories permissions:
chmod 750 /etc/gitea
chmod 644 /etc/gitea/app.ini
![](9.png)
And there you have it!
## **Creating your first gitea repository**
Just like in github, click the "+" at the top right corner:
![](10.png)
From here you can clone the repository on your local machine:
[ 192.168.100.1/24 ] [ /dev/pts/10 ] [~/Documents/Github]
→ git clone https://ech2.duckdns.org/nothing/mycoolrepo
Use the administrator's gitea credentials to clone the repository if you set it to private, and you're done! You can now start editing your self-hosted repository.
To customise the default gitea theme you can do the following, it comes up with arc-green as an alternative dark theme out of the box, or you can just use your own:
echo '[ui]' >> /etc/gitea/app.ini
echo 'THEMES = gitea,arc-green,lain' >> /etc/gitea/app.ini
echo 'DEFAULT_THEME = lain' >> /etc/gitea/app.ini # put 'arc-green' there instead for the default dark theme
cd /var/lib/gitea/custom
git clone https://git.void.yt/nothing/gitea-lain-template .
chown git:git /var/lib/gitea/{data,indexers,log}
chmod 750 /var/lib/gitea/{data,indexers,log}
chown root:git /etc/gitea
chmod 770 /etc/gitea
chmod 750 /etc/gitea
chmod 644 /etc/gitea/app.ini
systemctl restart postgresql gitea
To automatically update gitea:
root@gitea:~# apt install python3-pip
root@gitea:~# apt install mlocate -y ; updatedb ; locate settings.ini
root@gitea:~# pip3 install gitea-auto-update
root@gitea:/etc/gitea# vim settings.ini
root@gitea:/etc/gitea# cat settings.ini
[Gitea]
site=https://git.nowhere.moe/api/v1/version
apiUrl=https://api.github.com/repos/go-gitea/gitea/releases/latest
system=linux-amd64
file=/usr/local/bin/gitea
tmpDir=/tmp/
buildFromSource=
sourceDir=
logFile=update.log
root@gitea:/etc/gitea# gitea-auto-update --settings=/etc/gitea/settings.ini
update successfully
root@gitea:/etc/gitea# crontab -e
# m h dom mon dow command
0 0 * * * /usr/local/bin/gitea-auto-update --settings=/etc/gitea/settings.ini
:wq
With this setup, gitea will upgrade itself everyday at midnight. Here is my final **/etc/gitea/app.ini** file:
APP_NAME = Nihilism Gitea: Git with a cup of tea
RUN_USER = git
RUN_MODE = prod
[oauth2]
JWT_SECRET = dasljdashdaslhdas
[security]
INTERNAL_TOKEN = daojpoawdjpoaj
INSTALL_LOCK = true
SECRET_KEY = dapijpsadpdsajpodasj
[database]
DB_TYPE = postgres
HOST = 127.0.0.1:5432
NAME = giteadb
USER = kljdhaslhjkdas
PASSWD = jahsdhdshjsadl
SCHEMA =
SSL_MODE = disable
CHARSET = utf8
PATH = /var/lib/gitea/data/gitea.db
[repository]
ROOT = /home/git/gitea-repositories
[repository.upload]
; Max number of files per upload. Defaults to 5
MAX_FILES = 500000000000
[server]
SSH_DOMAIN = localhost
DOMAIN = git.nowhere.moe
HTTP_ADDR = 127.0.0.1
HTTP_PORT = 3000
ROOT_URL = https://git.nowhere.moe/
DISABLE_SSH = false
SSH_PORT = 22
LFS_START_SERVER = true
LFS_CONTENT_PATH = /var/lib/gitea/data/lfs
LFS_JWT_SECRET = aidsjisajdlasjildsa
OFFLINE_MODE = true
[mailer]
ENABLED = false
[service]
REGISTER_EMAIL_CONFIRM = false
ENABLE_NOTIFY_MAIL = false
DISABLE_REGISTRATION = false
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
ENABLE_CAPTCHA = false
REQUIRE_SIGNIN_VIEW = true
DEFAULT_KEEP_EMAIL_PRIVATE = true
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
DEFAULT_ENABLE_TIMETRACKING = true
NO_REPLY_ADDRESS = noreply.nowhere.moe
[picture]
DISABLE_GRAVATAR = true
ENABLE_FEDERATED_AVATAR = false
[openid]
ENABLE_OPENID_SIGNIN = true
ENABLE_OPENID_SIGNUP = false
[session]
PROVIDER = file
[log]
MODE = file
LEVEL = info
ROOT_PATH = /var/lib/gitea/log
[ui]
THEMES = gitea,arc-green
DEFAULT_THEME = arc-green

BIN
PCIPASSTHROUGH/0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
PCIPASSTHROUGH/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
PCIPASSTHROUGH/10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
PCIPASSTHROUGH/11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
PCIPASSTHROUGH/12.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
PCIPASSTHROUGH/13.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
PCIPASSTHROUGH/14.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
PCIPASSTHROUGH/15.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
PCIPASSTHROUGH/16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

BIN
PCIPASSTHROUGH/17.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

BIN
PCIPASSTHROUGH/18.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

BIN
PCIPASSTHROUGH/19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
PCIPASSTHROUGH/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
PCIPASSTHROUGH/20.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
PCIPASSTHROUGH/21.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
PCIPASSTHROUGH/22.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
PCIPASSTHROUGH/23.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
PCIPASSTHROUGH/24.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
PCIPASSTHROUGH/25.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

BIN
PCIPASSTHROUGH/26.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

BIN
PCIPASSTHROUGH/27.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

BIN
PCIPASSTHROUGH/28.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
PCIPASSTHROUGH/29.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
PCIPASSTHROUGH/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
PCIPASSTHROUGH/30.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
PCIPASSTHROUGH/31.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

BIN
PCIPASSTHROUGH/32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
PCIPASSTHROUGH/33.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
PCIPASSTHROUGH/34.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
PCIPASSTHROUGH/35.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
PCIPASSTHROUGH/36png.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
PCIPASSTHROUGH/37.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
PCIPASSTHROUGH/38.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
PCIPASSTHROUGH/39.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
PCIPASSTHROUGH/4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
PCIPASSTHROUGH/42.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

BIN
PCIPASSTHROUGH/43.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
PCIPASSTHROUGH/44.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
PCIPASSTHROUGH/45.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
PCIPASSTHROUGH/46.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
PCIPASSTHROUGH/47.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
PCIPASSTHROUGH/48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
PCIPASSTHROUGH/49.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
PCIPASSTHROUGH/5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
PCIPASSTHROUGH/50.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
PCIPASSTHROUGH/51.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
PCIPASSTHROUGH/52.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
PCIPASSTHROUGH/53.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
PCIPASSTHROUGH/54.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
PCIPASSTHROUGH/55.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
PCIPASSTHROUGH/56.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
PCIPASSTHROUGH/57.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
PCIPASSTHROUGH/58.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
PCIPASSTHROUGH/59.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
PCIPASSTHROUGH/6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
PCIPASSTHROUGH/60.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
PCIPASSTHROUGH/61.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
PCIPASSTHROUGH/62.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
PCIPASSTHROUGH/63.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
PCIPASSTHROUGH/64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
PCIPASSTHROUGH/65.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
PCIPASSTHROUGH/66.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
PCIPASSTHROUGH/67.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
PCIPASSTHROUGH/68.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
PCIPASSTHROUGH/69.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
PCIPASSTHROUGH/7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
PCIPASSTHROUGH/70.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
PCIPASSTHROUGH/71.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
PCIPASSTHROUGH/72.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
PCIPASSTHROUGH/73.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
PCIPASSTHROUGH/74.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
PCIPASSTHROUGH/75.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
PCIPASSTHROUGH/76.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
PCIPASSTHROUGH/77.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
PCIPASSTHROUGH/8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
PCIPASSTHROUGH/80.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
PCIPASSTHROUGH/81.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
PCIPASSTHROUGH/82.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
PCIPASSTHROUGH/83.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
PCIPASSTHROUGH/84.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
PCIPASSTHROUGH/85.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
PCIPASSTHROUGH/86.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
PCIPASSTHROUGH/87.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
PCIPASSTHROUGH/88.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Some files were not shown because too many files have changed in this diff Show more