mirror of
				https://github.com/linuxserver/docker-swag.git
				synced 2025-10-31 13:07:44 +09:00 
			
		
		
		
	Add default_server back to default site conf's https listen
This commit is contained in:
		| @@ -335,6 +335,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 | |||||||
|  |  | ||||||
| ## Versions | ## Versions | ||||||
|  |  | ||||||
|  | * **03.10.22:** - Add default_server back to default site conf's https listen. | ||||||
| * **22.09.22:** - Added support for DO DNS validation. | * **22.09.22:** - Added support for DO DNS validation. | ||||||
| * **22.09.22:** - Added certbot-dns-acmedns for DNS01 validation. | * **22.09.22:** - Added certbot-dns-acmedns for DNS01 validation. | ||||||
| * **20.08.22:** - [Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) nginx.conf - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)). | * **20.08.22:** - [Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) nginx.conf - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)). | ||||||
|   | |||||||
| @@ -155,6 +155,7 @@ app_setup_nginx_reverse_proxy_block: "" | |||||||
|  |  | ||||||
| # changelog | # changelog | ||||||
| changelogs: | changelogs: | ||||||
|  |   - { date: "03.10.22:", desc: "Add default_server back to default site conf's https listen." } | ||||||
|   - { date: "22.09.22:", desc: "Added support for DO DNS validation." } |   - { date: "22.09.22:", desc: "Added support for DO DNS validation." } | ||||||
|   - { date: "22.09.22:", desc: "Added certbot-dns-acmedns for DNS01 validation." } |   - { date: "22.09.22:", desc: "Added certbot-dns-acmedns for DNS01 validation." } | ||||||
|   - { date: "20.08.22:", desc: "[Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) nginx.conf - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." } |   - { date: "20.08.22:", desc: "[Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) nginx.conf - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." } | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| ## Version 2022/09/01 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample | ## Version 2022/10/03 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample | ||||||
|  |  | ||||||
| # redirect all traffic to https | # redirect all traffic to https | ||||||
| server { | server { | ||||||
| @@ -12,8 +12,8 @@ server { | |||||||
|  |  | ||||||
| # main server block | # main server block | ||||||
| server { | server { | ||||||
|     listen 443 ssl http2; |     listen 443 ssl http2 default_server; | ||||||
|     listen [::]:443 ssl http2; |     listen [::]:443 ssl http2 default_server; | ||||||
|  |  | ||||||
|     server_name _; |     server_name _; | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user