Fixed bug in example nginx config, refs #1091

pull/1204/head
Simon Willison 2021-01-07 15:42:14 -08:00 zatwierdzone przez GitHub
rodzic 97fb10c17d
commit 4c0995ed60
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -146,7 +146,7 @@ Here is an example of an `nginx <https://nginx.org/>`__ configuration file that
listen 80;
location /my-datasette {
proxy_pass http://127.0.0.1:8009;
proxy_pass http://127.0.0.1:8009/my-datasette;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}