add option for nginx to listen on socket
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2019-04-22 13:23:36 +00:00
parent 0363273f7a
commit 66907f236a
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
#!/bin/ash
if ! [ -z $NGINX_LISTEN_SOCKET ]; then
sed -i 's#listen 80#listen unix:/var/run/nginx.sock#' /etc/nginx/conf.d/default.conf
fi
nginx
touch /data/torrents

View File

@ -1,6 +1,6 @@
server {
listen 80;
server_name localhost;
listen 80;
server_name localhost;
root /srv/www/webui/;