This file contains hidden or 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
[custom.flox] | |
command = "flox envs --active --json | jq -r '.[] | .pointer.name'" | |
when = "flox envs --active --json | jq -e 'length > 0'" | |
style = "bold blue" | |
format = "in active flox environment [$output]($style)" | |
description = "A prompt to display the active profile(s) on your flox environment" |
This file contains hidden or 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 { | |
server_name analytics-admin-proxy.domain; | |
root /var/www/piwik; | |
access_log /var/log/nginx/access-piwik-admin.log combined; | |
error_log /var/log/nginx/error-piwik-admin.log; | |
index index.php; | |
listen 8081 default_server; | |
location / { | |
try_files $uri $uri/ /index.php$args; | |
} |