1
0
miroir de https://github.com/rspamd/rspamd.git synchronisé 2024-07-30 08:18:31 +02:00

[Test] Fix config

Cette révision appartient à :
Vsevolod Stakhov 2018-06-13 14:45:17 +01:00
Parent d133232f34
révision 378a1f21a3

Voir le fichier

@ -4,17 +4,16 @@ worker_processes 1;
pid ${TMPDIR}/nginx.pid;
error_log ${TMPDIR}/error.log;
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server {
# no need for root privileges
listen ${NGINX_ADDR}:${NGINX_PORT};
server_name localhost
server_name localhost;
location / {
root ${TMPDIR}
root ${TMPDIR};
autoindex on;
}
}