services: httpd: Fix virtual-host doc and config.
* doc/guix.texi (Web Services): Fix httpd-virtualhost examples. * gnu/services/web.scm (httpd-process-extensions): Add missing newline separator.
This commit is contained in:
		
							parent
							
								
									0c3cf62829
								
							
						
					
					
						commit
						3a69dd5c15
					
				
					 2 changed files with 9 additions and 9 deletions
				
			
		|  | @ -19419,13 +19419,13 @@ Other services can also extend the @code{httpd-service-type} to add to | |||
| the configuration. | ||||
| 
 | ||||
| @lisp | ||||
| (simple-service 'my-extra-server httpd-service-type | ||||
| (simple-service 'www.example.com-server httpd-service-type | ||||
|                 (list | ||||
|                   (httpd-virtualhost | ||||
|                     "*:80" | ||||
|                     (list (string-append | ||||
|                            "ServerName "www.example.com | ||||
|                             DocumentRoot \"/srv/http/www.example.com\""))))) | ||||
|                     (list (string-join '("ServerName www.example.com" | ||||
|                                           "DocumentRoot /srv/http/www.example.com") | ||||
|                                        "\n"))))) | ||||
| @end lisp | ||||
| @end deffn | ||||
| 
 | ||||
|  | @ -19559,13 +19559,13 @@ This data type represents a virtualhost configuration block for the httpd servic | |||
| These should be added to the extra-config for the httpd-service. | ||||
| 
 | ||||
| @lisp | ||||
| (simple-service 'my-extra-server httpd-service-type | ||||
| (simple-service 'www.example.com-server httpd-service-type | ||||
|                 (list | ||||
|                   (httpd-virtualhost | ||||
|                     "*:80" | ||||
|                     (list (string-append | ||||
|                            "ServerName "www.example.com | ||||
|                             DocumentRoot \"/srv/http/www.example.com\""))))) | ||||
|                     (list (string-join '("ServerName www.example.com" | ||||
|                                           "DocumentRoot /srv/http/www.example.com") | ||||
|                                        "\n"))))) | ||||
| @end lisp | ||||
| 
 | ||||
| @table @asis | ||||
|  |  | |||
|  | @ -438,7 +438,7 @@ | |||
|                            addresses-and-ports | ||||
|                            contents) | ||||
|                         `(,(string-append | ||||
|                             "<VirtualHost " addresses-and-ports ">\n") | ||||
|                             "\n<VirtualHost " addresses-and-ports ">\n") | ||||
|                           ,@contents | ||||
|                           "\n</VirtualHost>\n")) | ||||
|                        ((? string? x) | ||||
|  |  | |||
		Reference in a new issue