diff options
-rw-r--r-- | custom/ymir.nginx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/custom/ymir.nginx b/custom/ymir.nginx index 0512d79e..b5bb9ce4 100644 --- a/custom/ymir.nginx +++ b/custom/ymir.nginx | |||
@@ -69,19 +69,19 @@ server { | |||
69 | error_log /var/log/cgit.error; | 69 | error_log /var/log/cgit.error; |
70 | 70 | ||
71 | location / { | 71 | location / { |
72 | uwuwsgi_param QUERY_STRING $query_string; | 72 | uwsgi_param QUERY_STRING $query_string; |
73 | uwuwsgi_param REQUEST_METHOD $request_method; | 73 | uwsgi_param REQUEST_METHOD $request_method; |
74 | uwuwsgi_param CONTENT_TYPE $content_type; | 74 | uwsgi_param CONTENT_TYPE $content_type; |
75 | uwuwsgi_param CONTENT_LENGTH $content_length; | 75 | uwsgi_param CONTENT_LENGTH $content_length; |
76 | uwuwsgi_param REQUEST_URI $request_uri; | 76 | uwsgi_param REQUEST_URI $request_uri; |
77 | uwuwsgi_param PATH_INFO $document_uri; | 77 | uwsgi_param PATH_INFO $document_uri; |
78 | uwuwsgi_param DOCUMENT_ROOT $document_root; | 78 | uwsgi_param DOCUMENT_ROOT $document_root; |
79 | uwuwsgi_param SERVER_PROTOCOL $server_protocol; | 79 | uwsgi_param SERVER_PROTOCOL $server_protocol; |
80 | uwuwsgi_param REMOTE_ADDR $remote_addr; | 80 | uwsgi_param REMOTE_ADDR $remote_addr; |
81 | uwuwsgi_param REMOTE_PORT $remote_port; | 81 | uwsgi_param REMOTE_PORT $remote_port; |
82 | uwuwsgi_param SERVER_ADDR $server_addr; | 82 | uwsgi_param SERVER_ADDR $server_addr; |
83 | uwuwsgi_param SERVER_PORT $server_port; | 83 | uwsgi_param SERVER_PORT $server_port; |
84 | uwuwsgi_param SERVER_NAME $server_name; | 84 | uwsgi_param SERVER_NAME $server_name; |
85 | uwsgi_pass unix:/tmp/cgit.sock; | 85 | uwsgi_pass unix:/tmp/cgit.sock; |
86 | uwsgi_modifier1 9; | 86 | uwsgi_modifier1 9; |
87 | } | 87 | } |