Skip to content

Instantly share code, notes, and snippets.

@mamemomonga
Created July 9, 2020 01:07
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 mamemomonga/bc6d05fced0b155f91334b63dcb8cecb to your computer and use it in GitHub Desktop.
Save mamemomonga/bc6d05fced0b155f91334b63dcb8cecb to your computer and use it in GitHub Desktop.
nginxでテキストだけ表示する

nginxでテキストだけ表示する

location / {
	add_header Content-Type text/plain;
	return 200 "Hello World!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment