mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: nginx: Use mime.types.
* gnu/service/web.scm (default-nginx-config): Add 'nginx' parameter and honor it. Adjust callers.
This commit is contained in:
parent
73f0e1ab79
commit
54412ebfeb
1 changed files with 4 additions and 3 deletions
|
@ -180,7 +180,7 @@ (define (nginx-upstream-config upstream)
|
|||
(nginx-upstream-configuration-servers upstream)))
|
||||
" }\n"))
|
||||
|
||||
(define (default-nginx-config log-directory run-directory server-list upstream-list)
|
||||
(define (default-nginx-config nginx log-directory run-directory server-list upstream-list)
|
||||
(mixed-text-file "nginx.conf"
|
||||
"user nginx nginx;\n"
|
||||
"pid " run-directory "/pid;\n"
|
||||
|
@ -192,6 +192,7 @@ (define (default-nginx-config log-directory run-directory server-list upstream-l
|
|||
" uwsgi_temp_path " run-directory "/uwsgi_temp;\n"
|
||||
" scgi_temp_path " run-directory "/scgi_temp;\n"
|
||||
" access_log " log-directory "/access.log;\n"
|
||||
" include " nginx "/share/nginx/conf/mime.types;\n"
|
||||
"\n"
|
||||
(string-join
|
||||
(filter (lambda (section) (not (null? section)))
|
||||
|
@ -235,7 +236,7 @@ (define nginx-activation
|
|||
;; Check configuration file syntax.
|
||||
(system* (string-append #$nginx "/sbin/nginx")
|
||||
"-c" #$(or config-file
|
||||
(default-nginx-config log-directory
|
||||
(default-nginx-config nginx log-directory
|
||||
run-directory server-blocks upstream-blocks))
|
||||
"-t")))))
|
||||
|
||||
|
@ -250,7 +251,7 @@ (define nginx-shepherd-service
|
|||
(zero?
|
||||
(system* #$nginx-binary "-c"
|
||||
#$(or config-file
|
||||
(default-nginx-config log-directory
|
||||
(default-nginx-config nginx log-directory
|
||||
run-directory server-blocks upstream-blocks))
|
||||
#$@args))))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue