Files
crawlab/frontend/conf/nginx.conf
2019-06-10 21:36:26 +08:00

20 lines
313 B
Nginx Configuration File

events {
worker_connections 1024;
multi_accept on;
}
http {
include mime.types;
default_type application/octet-stream;
server {
listen 8080;
root /opt/dist;
index index.html;
location ~ .*\.(js|css)?$ {
expires 1d;
}
}
}