29 lines
656 B
Nginx Configuration File
29 lines
656 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
server {
|
|
include /etc/nginx/mime.types;
|
|
listen 80;
|
|
root /usr/bin/cre/dist/color-recipes-explorer-frontend;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri$args $uri$args/ /index.html;
|
|
}
|
|
}
|
|
|
|
}
|