⚡️ Micro servidor HTTP para servir archivos estáticos.
Imagine que tiene archivos estáticos frontend, un servidor backend y nignix (proxy inverso), que se ejecutan en el contenedor Docker. El problema surge en este punto, ¿cómo servir archivos estáticos para el proxy inverso? Instale 1 nignix más en el contenedor frontend, eso es excesivo. Por eso se hace Servekit.
Obtenga el binario más reciente de la página de lanzamientos
./servekit # serving ./static directory
FROM cjaewon/servekit:2.0.0
COPY ./static /static
EXPOSE 3000
version : " 3.8 "
services :
app :
image : cjaewon/servekit:2.0.0
volumes :
- ./static:/static
environment :
- SERVEKIT_SERVER_PORT : :3000
- SERVEKIT_SERVER_PATH : ./static
- SERVEKIT_SERVER_404 : none
- SERVEKIT_SERVER_OVERVIEW : false
Puede configurar un puerto, una ruta de servicio, etc. con un archivo de configuración o una variable de entorno. Servekit escanea un .servekit.toml
en $HOME
.
Directorios
# ## Config file sample
[ server ]
port = " :3000 " # :3000 (default)
path = " ./static " # ./static (default)
404 = " none " # none (default), html file
# if you are using client side rendering, you have to change none to index.html
overview = false # false (default), true
# if your are using true, directory's file list will be show
# and, it can only true when 404 config is "none"
Con Docker, puede configurar la variable de entorno como se muestra a continuación. (Una configuración no definida utilizará un valor predeterminado)
ENV SERVEKIT_SERVER_PORT :3000
ENV SERVEKIT_SERVER_PATH ./static
ENV SERVEKIT_SERVER_404 none
ENV SERVEKIT_SERVER_OVERVIEW false