Douglas Silva

Results 50 comments of Douglas Silva

I built this one recently: https://github.com/o-alquimista/symfony-demo-docker - None of the containers start as root. The user `symfonyd` was created for this. - Unix socket used to connect HTTPD with PHP-FPM....

This is my solution for all forbidden characters: ``` public static function slugify(string $string): string { $slug = preg_replace('/\s+/', '-', mb_strtolower(trim($string), 'UTF-8')); $slug = preg_replace('/[^a-z0-9-]/', '', $slug); return $slug; }...

@jkufner Your solution gives much better results, and it simplifies the code a bit. I've created a [pull request](https://github.com/symfony/demo/pull/1019) already. I can make the changes there and insert your author...

Using the [Symfony 5 documentation](https://symfony.com/doc/5.3/setup/web_server_configuration.html) as a reference, I've come up with this: ``` server "example.org" { listen on * port 80 alias www.example.org root "/htdocs/example/public/" directory index index.php location...

New and improved :) ```nginx # application front controller location found "/index.php" { fastcgi socket "/run/php-fpm.sock" } # fallback to front controller if the location doesn't exist location not found...

I can reproduce this. I had to disable Secure Boot in order to boot the installation media via USB to install elementary 5.1.7. Does that mean I have to wait...

Please re-open this. I can reproduce this with version 1.3.1, the latest .exe installable available [here](https://qtpass.org/downloads#Windows). Fresh Windows 10 Pro installation. Windows logged these: ``` - - 1000 2 100...

I made a PR that fixes this using six bullets, as suggested. The translatable "Hidden" label is kept as a description for accessibility purposes. https://github.com/andOTP/andOTP/pull/935 ![Screenshot_1640974613](https://user-images.githubusercontent.com/25424263/147835933-d7c0f309-43b2-42c7-9ee9-4ab38230c709.png)

I wanna try to fix this. @flocke, is it ok to disable the length validation when attempting to restore an encrypted backup? Then we also enable the missing length validation...

I've got certbot installed inside an alpine-based httpd image, but using the standalone plugin. This is working well, but the approach I'm using makes the image extremely large (about 800...