Skip to content

Instantly share code, notes, and snippets.

@popenkomaksim
Last active February 26, 2018 20:58
Show Gist options
  • Save popenkomaksim/a9e7cbc2d96149ce0c612fe8ae02a85a to your computer and use it in GitHub Desktop.
Save popenkomaksim/a9e7cbc2d96149ce0c612fe8ae02a85a to your computer and use it in GitHub Desktop.
.dockerignore
Dockerfile
README.md
example.png
daemon off;
pid /run/nginx.pid;
error_log stderr;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
types_hash_max_size 2048;
server {
listen 80;
location / {
root /app;
autoindex on;
index index.html;
}
}
}
daemon off;
pid /run/nginx.pid;
error_log stderr;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
types_hash_max_size 2048;
server {
listen 80;
location / {
root /app;
autoindex on;
index index.html;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment