Procházet zdrojové kódy

Fix proxy pass for old requests

pull/544/head
Guillaume Vincent před 4 roky
rodič
revize
5d1aa73633
3 změnil soubory, kde provedl 5 přidání a 3 odebrání
  1. +2
    -2
      containers/docker-compose.yml
  2. +2
    -0
      containers/webserver/httpd-ssl.conf
  3. +1
    -1
      packages/lesspass-site/nginx.conf

+ 2
- 2
containers/docker-compose.yml Zobrazit soubor

@@ -8,7 +8,7 @@ services:
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
backend:
restart: always
image: quay.io/lesspass/backend:latest
@@ -32,7 +32,7 @@ services:
- EMAIL_PORT
- EMAIL_USE_TLS
volumes:
- www:/app/www
- www:/opt/backend/www
frontend:
restart: always
image: quay.io/lesspass/frontend:latest


+ 2
- 0
containers/webserver/httpd-ssl.conf Zobrazit soubor

@@ -160,6 +160,8 @@ ServerAdmin EMAIL

<VirtualHost *:443>
ServerName www.FQDN
ProxyPass /api/ http://backend:8000/api/
ProxyPassReverse /api/ http://backend:8000/api/
ProxyPass / http://frontend/
ProxyPassReverse / http://frontend/
SSLEngine on


+ 1
- 1
packages/lesspass-site/nginx.conf Zobrazit soubor

@@ -1,5 +1,5 @@
server {
listen 8080;
listen 80;
server_name frontend;

#charset koi8-r;


Načítá se…
Zrušit
Uložit