Skip to content

Instantly share code, notes, and snippets.

@Himura2la
Created October 13, 2023 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Himura2la/5a181a3805bca8f95e9fadc635db4895 to your computer and use it in GitHub Desktop.
Save Himura2la/5a181a3805bca8f95e9fadc635db4895 to your computer and use it in GitHub Desktop.
nginx plain text response
server {
listen 80;
server_name nya.nya;
default_type text/plain;
return 200 'nya nyaaaa~\n';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment