Skip to content
Snippets Groups Projects
Commit a9e1fd9b authored by nimrod's avatar nimrod
Browse files

For usage in a browser.

Nginx sends the response as an application/octet-stream so browsers try
to download it.
parent b256f494
No related branches found
No related tags found
No related merge requests found
...@@ -19,5 +19,8 @@ server { ...@@ -19,5 +19,8 @@ server {
include snippets/security-txt.conf; include snippets/security-txt.conf;
include snippets/ssl.conf; include snippets/ssl.conf;
error_page 404 /; error_page 404 /;
location = / { return 200 "$remote_addr"; } location = / {
add_header Content-Type "text/plain; charset=utf-8";
return 200 "$remote_addr";
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment