Eric Nemchik

Results 212 comments of Eric Nemchik

https://github.com/linuxserver/docker-syslog-ng/pull/6 should make the image work again. It's not the universal fix at the base image level, but it does solve the problem. We're still contemplating the permanent fix.

https://github.com/linuxserver/docker-baseimage-alpine/blob/5f3a505a50dc9ded570f191f042f2ade1b47904e/root/docker-mods#L6 could be ```shell chmod -R +x \ ``` and it would make all downstream images work, but we're debating if this is a safety concern (adding executable bit to...

> > and it would make all downstream images work, but we're debating if this is a safety concern (adding executable bit to everything, as opposed to being more specific...

Got you covered here https://github.com/GhostWriters/DockSTARTer @htpcBeginner We're ready whenever you are to have some fun working together!

Yes DockSTARTer supports arm64. Yes you can setup two instances of an app, but it's a little advanced. Join DockSTARTer discord and we can walk you through it.

@s00500 can you try setting `server_name _;` and then replace your php location block with the following: ```nginx location ~ ^(.+\.php)(.*)$ { fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include /etc/nginx/fastcgi_params;...

> @nemchik I can confirm that this solution works for me Great! Thanks for testing that. I will look into the best way to implement setting `fastcgi_param SERVER_NAME ;` This...

Just to follow up, https://github.com/linuxserver/docker-baseimage-alpine-nginx/pull/84 this is the work being done, but it does not yet include a change to handle this specific issue. I'm still investigating the difference between...

Also, this would need to be rebased. We're now using php8 in the base.

On further investigation it actually looks like excluding `node_modules` is really not meant to be done when [target](https://webpack.js.org/configuration/target/) is set to `web` (default). If `target` is set to something else...