mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-12-21 16:24:26 +01:00
Remove old website
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
9b3b195206
commit
b98fca7af8
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +0,0 @@
|
||||
[submodule "bensuperpc_website"]
|
||||
path = bensuperpc_website
|
||||
url = git@github.com:bensuperpc/bensuperpc_website.git
|
2
Makefile
2
Makefile
@ -20,7 +20,7 @@
|
||||
|
||||
DOCKER := docker
|
||||
|
||||
PROFILES := wp_db wordpress webserver certbot phpmyadmin flask_website flask_db pgadmin qbittorrent jellyfin
|
||||
PROFILES := wp_db wordpress webserver certbot phpmyadmin qbittorrent jellyfin
|
||||
PROFILE_CMD := $(addprefix --profile ,$(PROFILES))
|
||||
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
Subproject commit 0bb75c3e6006bc5f9bd9bf540d048b800cd21d1d
|
@ -12,7 +12,6 @@ services:
|
||||
- certbot-cert:/etc/letsencrypt
|
||||
- wordpress:/var/www/wordpress
|
||||
- jellyfin:/var/www/jellyfin
|
||||
- ./bensuperpc_website:/var/www/flask
|
||||
#command: >
|
||||
# certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --staging --webroot
|
||||
# --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org
|
||||
@ -23,12 +22,10 @@ services:
|
||||
# --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org
|
||||
# --webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org
|
||||
|
||||
# --expand
|
||||
command: >
|
||||
certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --webroot
|
||||
--webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org
|
||||
--webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org
|
||||
--webroot-path=/var/www/flask --domain flask.bensuperpc.org --domain www.flask.bensuperpc.org
|
||||
|
||||
volumes:
|
||||
certbot-cert:
|
||||
|
@ -1,48 +0,0 @@
|
||||
#include /etc/nginx/conf.d/sub/cache-proxy.conf;
|
||||
|
||||
upstream pgadmin_server {
|
||||
# ip_hash;
|
||||
server pgadmin:80;
|
||||
# server pgadmin:80 weight=1 max_fails=3 fail_timeout=30s;
|
||||
}
|
||||
|
||||
# pgadmin
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
#listen 443;
|
||||
#listen [::]:443;
|
||||
|
||||
server_name pgadmin.bensuperpc.org www.pgadmin.bensuperpc.org;
|
||||
|
||||
include /etc/nginx/conf.d/sub/gzip.conf;
|
||||
|
||||
location / {
|
||||
proxy_pass http://pgadmin_server;
|
||||
proxy_redirect off;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
|
||||
#proxy_set_header Host $host;
|
||||
#proxy_set_header X-Real-IP $remote_addr;
|
||||
#proxy_set_header X-Forwarded-Proto $scheme;
|
||||
#proxy_set_header X-Forwarded-Host $host:$server_port;
|
||||
#proxy_set_header X-Forwarded-Server $host;
|
||||
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
#proxy_set_header X-Forwarded-Ssl on;
|
||||
|
||||
# Uncomment if you want to enable proxy cache
|
||||
#proxy_cache PROXY;
|
||||
#proxy_cache_valid 200 302 10m;
|
||||
#proxy_cache_valid 301 1h;
|
||||
#proxy_cache_valid any 1m;
|
||||
#proxy_cache_lock on;
|
||||
|
||||
#proxy_ignore_headers Vary;
|
||||
#proxy_hide_header Vary;
|
||||
|
||||
#add_header X-cache $upstream_cache_status;
|
||||
}
|
||||
|
||||
# resolver 8.8.8.8;
|
||||
}
|
Loading…
Reference in New Issue
Block a user