Simplified nginx config examples

pull/1392/head
Simon Willison 2021-07-10 17:29:42 -07:00 zatwierdzone przez GitHub
rodzic de2a106328
commit d792fc7cf5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 7 usunięć

Wyświetl plik

@ -144,14 +144,12 @@ Here is an example of an `nginx <https://nginx.org/>`__ configuration file that
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
server { server {
listen 80; listen 80;
location /my-datasette { location /my-datasette {
proxy_pass http://127.0.0.1:8009/my-datasette; proxy_pass http://127.0.0.1:8009/my-datasette;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
} }
} }
} }
@ -166,9 +164,8 @@ You can also use the ``--uds`` option to Datasette to listen on a Unix domain so
server { server {
listen 80; listen 80;
location / { location / {
proxy_pass http://datasette; proxy_pass http://datasette;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
} }
} }
upstream datasette { upstream datasette {