This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name example.com www.example.com; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl; | |
server_name example.com www.example.com; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
server_name example.com; | |
return 302 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl http2 default_server; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
Running phase: unpackPhase | |
unpacking source archive /nix/store/j4ap5fdknayq4sav3kkcnr3bql8y33dk-source | |
source root is source | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
Running phase: patchPhase | |
'/nix/store/rw402gbbkmpgy467d3by2dim8k3cmsih-source/backport-include' -> './backport-include' | |
'/nix/store/rw402gbbkmpgy467d3by2dim8k3cmsih-source/backport-include/drivers' -> './backport-include/drivers' | |
'/nix/store/rw402gbbkmpgy467d3by2dim8k3cmsih-source/backport-include/drivers/misc' -> './backport-include/drivers/misc' | |
'/nix/store/rw402gbbkmpgy467d3by2dim8k3cmsih-source/backport-include/drivers/misc/mei' -> './backport-include/drivers/misc/mei' |