moving everything to active or retired vs incubating and graduated
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
This commit is contained in:
26
active/systemd_stablediffusion/nginx.conf
Normal file
26
active/systemd_stablediffusion/nginx.conf
Normal file
@@ -0,0 +1,26 @@
|
||||
user nginx;
|
||||
worker_processes auto;
|
||||
error_log /var/log/nginx/error.log;
|
||||
pid /run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
access_log /var/log/nginx/access.log main;
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
27
active/systemd_stablediffusion/reesimulate.reeseapps.com
Normal file
27
active/systemd_stablediffusion/reesimulate.reeseapps.com
Normal file
@@ -0,0 +1,27 @@
|
||||
server {
|
||||
listen [::]:80;
|
||||
server_name reesimulate.reeseapps.com;
|
||||
|
||||
# Redirect HTTP to HTTPS
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen [::]:443 ssl;
|
||||
server_name reesimulate.reeseapps.com;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||||
|
||||
location / {
|
||||
auth_basic "Restricted Area";
|
||||
auth_basic_user_file /etc/nginx/.htpasswd;
|
||||
proxy_pass http://localhost:7860;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
}
|
||||
57
active/systemd_stablediffusion/stablediffusion.md
Normal file
57
active/systemd_stablediffusion/stablediffusion.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Stable Diffusion
|
||||
|
||||
## Web UI
|
||||
|
||||
<https://github.com/lllyasviel/stable-diffusion-webui-forge>
|
||||
|
||||
```bash
|
||||
sudo pacman -S python-pytorch-rocm
|
||||
|
||||
git clone https://aur.archlinux.org/python-torchvision-rocm.git
|
||||
cd python-torchvision-rocm
|
||||
makepkg -si
|
||||
|
||||
git clone https://github.com/lllyasviel/stable-diffusion-webui-forge.git
|
||||
cd stable-diffusion-webui
|
||||
python3.10 -m venv venv --system-site-packages
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
|
||||
# We need to replace the torch/pytorch versions with amd compatible ones.
|
||||
# Check https://download.pytorch.org/whl/nightly/torch/ for versions
|
||||
# Specifically you want the "rocm" versions for AMD
|
||||
# Just copy the "torch-2.6.0.dev20241205+rocm6.2.4" part
|
||||
pip install torch==2.6.0.dev20241205+rocm6.2.4 --index-url https://download.pytorch.org/whl/nightly
|
||||
pip install torchvision==0.20.0.dev20241207+rocm6.2.4 --index-url https://download.pytorch.org/whl/nightly
|
||||
|
||||
./webui.sh
|
||||
```
|
||||
|
||||
## Models
|
||||
|
||||
<https://stable-diffusion-art.com/models/#How_to_install_and_use_a_model>
|
||||
|
||||
### SDXC
|
||||
|
||||
- Use 1024x1024
|
||||
- First generation is really really slow, subsequent generations are fast
|
||||
|
||||
<https://stable-diffusion-art.com/sdxl-model/#Download_and_install_SDXL_10_models>
|
||||
|
||||
### Flux AI
|
||||
|
||||
- You must use Stable Diffusion WebUI Forge
|
||||
- In the UI, click "flux"
|
||||
- First generation is really really really really slow
|
||||
|
||||
<https://stable-diffusion-art.com/flux-forge/>
|
||||
|
||||
## Nginx
|
||||
|
||||
```bash
|
||||
htpasswd -c /etc/nginx/.htpasswd yourusername
|
||||
|
||||
sudo useradd -m -s /bin/bash nginx
|
||||
|
||||
sudo certbot --nginx -d reesimulate.reeseapps.com
|
||||
```
|
||||
Reference in New Issue
Block a user