services: nginx: Allow to add raw content to the server blocks.
* doc/guix.texi (Web Services): Document 'raw-content'. * gnu/services/web.scm (<nginx-server-configuration>)[raw-content]: New field. (emit-nginx-server-config): Add it.
This commit is contained in:
parent
8b223ceac4
commit
b05e8ee120
@ -14979,6 +14979,9 @@ you don't have a key or you don't want to use HTTPS.
|
||||
@item @code{server-tokens?} (default: @code{#f})
|
||||
Whether the server should add its configuration to response.
|
||||
|
||||
@item @code{raw-content} (default: @code{'()})
|
||||
A list of raw lines added to the server block.
|
||||
|
||||
@end table
|
||||
@end deftp
|
||||
|
||||
|
@ -58,6 +58,7 @@ (define-module (gnu services web)
|
||||
nginx-server-configuration-ssl-certificate
|
||||
nginx-server-configuration-ssl-certificate-key
|
||||
nginx-server-configuration-server-tokens?
|
||||
nginx-server-configuration-raw-content
|
||||
|
||||
<nginx-upstream-configuration>
|
||||
nginx-upstream-configuration
|
||||
@ -152,7 +153,9 @@ (define-record-type* <nginx-server-configuration>
|
||||
(ssl-certificate-key nginx-server-configuration-ssl-certificate-key
|
||||
(default #f))
|
||||
(server-tokens? nginx-server-configuration-server-tokens?
|
||||
(default #f)))
|
||||
(default #f))
|
||||
(raw-content nginx-server-configuration-raw-content
|
||||
(default '())))
|
||||
|
||||
(define-record-type* <nginx-upstream-configuration>
|
||||
nginx-upstream-configuration make-nginx-upstream-configuration
|
||||
@ -232,7 +235,8 @@ (define (emit-nginx-server-config server)
|
||||
(index (nginx-server-configuration-index server))
|
||||
(try-files (nginx-server-configuration-try-files server))
|
||||
(server-tokens? (nginx-server-configuration-server-tokens? server))
|
||||
(locations (nginx-server-configuration-locations server)))
|
||||
(locations (nginx-server-configuration-locations server))
|
||||
(raw-content (nginx-server-configuration-raw-content server)))
|
||||
(define-syntax-parameter <> (syntax-rules ()))
|
||||
(define-syntax-rule (and/l x tail ...)
|
||||
(let ((x* x))
|
||||
@ -255,6 +259,7 @@ (define-syntax-rule (and/l x tail ...)
|
||||
"\n"
|
||||
(map emit-nginx-location-config locations)
|
||||
"\n"
|
||||
(map (lambda (x) (list " " x "\n")) raw-content)
|
||||
" }\n")))
|
||||
|
||||
(define (emit-nginx-upstream-config upstream)
|
||||
|
Loading…
Reference in New Issue
Block a user