mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
20 lines
348 B
Nginx Configuration File
20 lines
348 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
multi_accept on;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
server {
|
|
listen 8888;
|
|
root /Users/yeqing/projects/crawlab-frontend/dist;
|
|
index index.html;
|
|
|
|
location ~ .*\.(js|css)?$ {
|
|
expires 1d;
|
|
}
|
|
}
|
|
}
|