Roman

Results 234 comments of Roman

> I found this issue when I wanted to clone a Github repo over https (due to firewall limitations). > > the basic auth need username and password in the...

Did anyone ever successfully completed this manual? I am hanging on the same points as @Waranoi. Basically at the very first step: `and add a new ShaderMaterial` I would love...

Are you sure you are attaching to the right window (and not some splash screen or something)? You could try a simple example: ```cs using FlaUI.Core; using FlaUI.Core.AutomationElements; using FlaUI.Core.Definitions;...

Yep I did read it. I am running the backend without Docker, so it is easier to adjust it. I thought about adding an environment variable "EXTERNAL_FRONTEND" and if this...

No worres, we are all busy and this is a free project after all! It makes absolutely sense to have frontend/backend in a single image for deployment but for development,...

Of course. I also thought about a tooltip but that is not so nice for mobile/table users. Other possibilities would be to put them on the same row: `Avg 7.4...

Maybe we can even split the display? Having the core metrics at the top in one line and then the details below. I kind of like the details in Swift...

I did some more research and found how the url is set: ```php define("HOST",(isset($_SERVER['HTTPS'])?"https":"http")."://".$_SERVER['HTTP_HOST']); ... define("URL",HOST.PATH); ``` So it uses the host from the request. Fortunately, this can be overriden...

Maybe we should document the nginx configuration somewhere? But beside that, yes it can be closed.

There are some more headers that should probably be set: ``` # Wikidocs server { listen 443 ssl; server_name wiki.mydomain.com; include conf.d/ssl.conf; location / { proxy_pass http://wikidocs:80; proxy_set_header Host $host;...