1
0
Fork 0
This commit is contained in:
Vladimír Dudr 2022-12-13 09:11:27 +01:00
parent 72626a9158
commit b355aa8ec4
8 changed files with 40 additions and 33 deletions

View file

@ -6,35 +6,36 @@ doms=(
'localhost'
'local3000.localhost'
'djinn1.localhost'
'*.gdpr.localhost'
'*.up123.localhost'
'*.caves.localhost'
'*.eno.localhost'
'*.adminer.localhost'
'*.laya-server.localhost'
'*.eshop.localhost'
'*.teastarter.localhost'
'*.aikido.localhost'
'*.trailguide.localhost'
'*.mytango.localhost'
'*.invoicing.localhost'
'*.layaweb.localhost'
'*.asqix.localhost'
'*.enix.localhost'
'*.statistix.localhost'
'*.booking.localhost'
'*.kotmel.localhost'
'*.baterie-grohe.localhost'
'*.zdravotniregistr.cz'
'*.booking-core.localhost'
'*.booking.localhost'
'*.caves.localhost'
'*.enix.localhost'
'*.eno.localhost'
'*.eno-statistix.localhost'
'*.eshop.localhost'
'*.gdpr.localhost'
'*.invoicing.localhost'
'*.jopixel-support.localhost'
'*.kalich.localhost'
'*.katalogy.localhost'
'*.kotmel.localhost'
'*.laya-server.localhost'
'*.layaweb.localhost'
'*.mytango.localhost'
'*.nicerice.localhost'
'*.statistix.localhost'
'*.teastarter.localhost'
'*.trailguide.localhost'
'*.up123.localhost'
'*.vizit-core.localhost'
'*.vizit.localhost'
'*.vizit-virtualni-recepce.localhost'
'*.vizitpresentation.localhost'
'*.booking-core.localhost'
'*.nicerice.localhost'
'*.jopixel-support.localhost'
'*.eno-statistix.localhost'
'*.vizit-virtualni-recepce.localhost'
'*.zdravotniregistr.cz'
)
mkcert -cert-file $HOME/.config/nginx/ssl/localhost.crt -key-file $HOME/.config/nginx/ssl/localhost.key $doms

View file

@ -1768,7 +1768,7 @@ map kitty_mod+g show_last_command_output
#: New window
map kitty_mod+enter new_window
map kitty_mod+enter launch --type os-window --cwd=current
#:: You can open a new kitty window running an arbitrary program, for
#:: example::

View file

@ -156,14 +156,14 @@ http {
}
location /fpm-status {
fastcgi_pass php;
fastcgi_pass unix:/run/user/{{ .chezmoi.uid }}/$php_version-fpm/status.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location / {
fastcgi_hide_header Access-Control-Allow-Origin;
fastcgi_pass $php_version;
fastcgi_pass unix:/run/user/{{ .chezmoi.uid }}/$php_version-fpm/fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_param QUERY_STRING $query_string;
@ -171,7 +171,7 @@ http {
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME index.php;
fastcgi_param SCRIPT_NAME $request_uri;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
@ -179,6 +179,8 @@ http {
fastcgi_param REQUEST_SCHEME $scheme;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_param PATH_INFO $request_uri;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;

View file

@ -37,6 +37,9 @@ function M.setup()
vim.o.splitright = true
--vim.o.clipboard = "unnamedplus"
vim.o.grepprg = 'rg --vimgrep --no-ignore --smart-case $*'
vim.o.grepformat = '%f:%l:%c:%m'
-- Buffer
vim.cmd([[
augroup forceRecheck

View file

@ -2,6 +2,7 @@ local M = {}
function M.setup()
require('trouble').setup({
mode = 'document_diagnostics'
})
end

View file

@ -4,15 +4,16 @@ daemonize = no
log_limit = 49152
[www]
listen = 127.0.0.1:9080
listen = /run/user/1000/php80-fpm/fpm.sock
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm = ondemand
pm.max_children = 30
pm.start_servers = 1
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_spare_servers = 15
pm.status_path = /fpm-status
pm.status_listen = /run/user/1000/php80-fpm/status.sock
access.log = /dev/stdout
access.format = "%R - %u %t \"%m %r\" %s %d"

View file

@ -13,7 +13,7 @@ Type=notify
ExecStart=/usr/bin/php-fpm%i --nodaemonize --fpm-config %E/php/%i/fpm/php-fpm.conf -n -c {{.chezmoi.homeDir}}/.config/php/%i/php.ini --force-stderr
ExecReload=/bin/kill -USR2 $MAINPID
#RuntimeDirectory=php-fpm-%i
RuntimeDirectory=php$i-fpm
RuntimeDirectory=php%i-fpm
#ConfigurationDirectory=php/%i
[Install]

View file

@ -72,9 +72,8 @@
# Right prompt segments.
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
command_execution_time # previous command duration
virtualenv # python virtual environment
# context # user@host
# time # current time
time # current time
)
# Basic style options that define the overall prompt look.