Ondřej Misák
Ondřej Misák
+1 In my company we like to use Nginx unit but we desperately need a cache for static files at the moment.
@kulczy close?
@VBart we have same issue. You're right. This is actually caused by an OOM kill. The load on Nginx unit processes exceeds the container limit and the request fails with...
@VBart We set the processes to a "very large" value that exceeded the container limits. Therefore signal 9 in unitd log and error 503 in browser.
Some update?
exactly same problem, temporary solution for me is define `.!Sub`: ```yaml server: environment: DATABASE_URL: .!Sub "mysql://${DB_USER}:${DB_PASSWORD}@$${RDSDatabaseInstance.Endpoint.Address}/${DB_NAME}" ``` and process `sed -i 's/.!Sub/!Sub/g'` in post-script.
This will broke all guys which use docker for develop in Nuxt: https://github.com/nuxt/nuxt.js/issues/13587
@pi0 I can create a sandbox where the bug can be simulated. However, as has already been written in the thread, the bug manifests itself randomly. It doesn't seem to...
Good work @pi0! ❤️
Your Nuxt app si running inside Docker container?