mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
20 lines
313 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|