Re: nginx.org/packages: File has unexpected size (1244887 != 1246820)

2024-08-12 Thread Dan Swaney
I wouldn't trust a build if the hash doesn't match. I'd use the version before it which does match. Was there an issue with the earlier version? On Mon, Aug 12, 2024, 3:21 AM FERRON, BENJAMIN via nginx wrote: > Hi, > > > > I’ve been experiencing issues fetching the sources of nginx 1.27.0 (deb

Re: I need help with our NGINX set up

2024-04-30 Thread Dan Swaney
The clue is with the URL which failed. >From first look, you appear to be using a FAST CGI URL with PHP? Just a wild guess, but try using: ``` fastcgi_param PHP_VALUE "upload_max_filesize = 500M \n post_max_size=500M" ``` Here is a reference link mentioning it: https://serverfault.com/a/704209

Re: situation with friendly urls

2023-03-30 Thread Dan Swaney
Another thing to try would be to enable debug to your output log. Add this line to the top of your nginx.conf file and restart NGINX: error_log /var/log/nginx/error.log debug; This assumes you have built NGINX with the configure option of --with-debug Here's the URL to the NGINX docs for conv

Re: situation with friendly urls

2023-03-30 Thread Dan Swaney
Check to make sure the file is stored as UTF-8 Unicode instead of ANSI. I once had an issue where NGINX wouldn't load and the log showed nothing useful. It turned out I had to convert the file to UTF-8 Unicode to get it to work again. On Thu, Mar 30, 2023, 7:16 AM Rick Gutierrez wrote: > Hi li

Re: nginx serving corrupt images

2023-02-23 Thread Dan Swaney
#x27;-I > objs/lib/krb5/objs/include' > I'm using a OpenSSL beta build from earlier, but I was able to reproduce Saint's issue and discovered the work-around with lowering the ssl_buffer_size to 4k, Something for Saint to try out. On Thu, Feb 23, 2023 at 10:26 PM Maxim Dounin

Re: nginx serving corrupt images

2023-02-23 Thread Dan Swaney
I don't see the rest of your nginx.conf. Also, the link you posted is to a logon page with no image URLs. On Wed, Feb 22, 2023 at 10:57 AM Saint Michael wrote: > I have a location > > root /static/duc/Digital_Universal_Currency; > # ... other directives ... > location / { > > try_f

Re: nginx serving corrupt images

2023-02-23 Thread Dan Swaney
I just ran your test and it works fine from Chrome and in Visual Studio Code: > wget https://x3x.us/index_files/image001.jpg > StatusCode: 200 > StatusCode: 200 > StatusDescription : OK > Content : {255, 216, 255, 224...} > RawContent: HTTP/1.1 200 OK >

Re: Upstream service php-fpm is up and running but reports {"errors": {"status_code": 502,"status": "php-fpm server is down"}}

2023-01-07 Thread Dan Swaney
To query your MySql database, I propose you use a REST interface to decouple it from your Front End. The REST interface should be a HTTP Web Service either self hosted or hosted by another Web Server locally on the NGINX Server. (This allows NGINX to handle authentication and HTTPS encryption cen

Re: Upstream service php-fpm is up and running but reports {"errors": {"status_code": 502,"status": "php-fpm server is down"}}

2023-01-05 Thread Dan Swaney
Have you tried enabling "debug" mode logging and checked the log file for more details? For example, modify the settings in your nginx.conf and restart the nginx service: error_log /dev/stdout debug; http { access_log /dev/stdout; ... } On Thu, Dec 15, 2022, 11:23 AM Kaushal Shriyan wrote

Build Issue with NGINX for Windows

2022-12-07 Thread Dan Swaney
I'm trying to build the open source for windows using the instructions at: http://nginx.org/en/docs/howto_build_on_win32.html I've set up the environment using Visual Studio 2022 Community Edition and Windows 11 SDK and VC RT v1.43 by: - Running vcvars64.bat using: - pushd C:\"Progra