Suppose i have a url as `http://somesite.com/ekjkASDs.gifv` , i want to
rewrite it as `http://somesite.com/vid.php?id=ekjkASDs`
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,270815,270815#msg-270815
___
nginx mailing list
nginx@nginx.org
ht
have converted an animated gif animated.gif to an mp4 animated.mp4.I then
rename animated.mp4 to animated.gifv. How can i tell nginx to treat .gifv
files as mp4.
location ~* \.(mp4|gifv)$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
Posted at Nginx Forum:
https://foru
I am trying to make pretty urls using rewrite rules but they are not
working
1.
https://example.com/s1/video.mp4 should be rewrite to
https://example.com/file/server/video.mp4
location = /s1/(.*)$ {
rewrite ^/s1/(.*) /file/server/$1 permanent;
}
2.
https://example.com/view/
Ah that was stupid... i forgot to copy the php location from my other server
block
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,268988,269058#msg-269058
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Here is a simplified version of the config.I get 405 (Method not
allowed).Documentation for the module say that the error happen if the
request method is not POST
http://www.grid.net.ru/nginx/upload.en.html
server {
listen 443 http2;
location = /upload {
proxy_pass http://mywebsite.com/uplo
Here is a simplified version of the config.I get 405 (Method not
allowed).Documentation for the module say that the error happen if the
request method is not POST
http://www.grid.net.ru/nginx/upload.en.html
server {
listen 443 http2;
location = /upload {
proxy_pass http://mywebsite.com/upl
@Lukas do you mean something like this
location = /upload {
proxy_pass http://mywebsite.com/upload;
}
server {
listen 80;
server_name mywebsite.com;
location = /upload {
}
}
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,268988,269037#msg-269037
___
I use nginx 1.11.3 with nginx upload module.The problem is that Nginx upload
module don't support HTTP/2 and thus when you upload you get 500 Internal
Error.
For now i am trying to use a separate server block to disable http2 just
for the upload and enable it for the rest
server {
listen 443;
The nginx-upload-module works well so i guess the issue is with
nginx-upload-progress-module
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,268865,268870#msg-268870
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/list
I even took latest version just to be sure
git clone -b master
https://github.com/masterzen/nginx-upload-progress-module/
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,268865,268866#msg-268866
___
nginx mailing list
nginx@nginx.org
http://
Hi ,
I compile nginx with nginx upload progress module but i still can't use any
of the configuration variables.Nginx throws errors like
[emerg] unknown directive "track_uploads"
nginx version: nginx/1.11.3
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
built with OpenSSL 1.0.2h 3 May
Chrome : Version 45.0.2454.101 m
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261987,262002#msg-262002
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
I have http traffic redirect to https by default so i think HTTP/2.0 should
have been displayed in network tab-->protocol in chrome but its not the
case
https://gyazo.com/583ac40f5961db80433c75d69843b923
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261987,261999#msg-261999
_
@Alt
Protocol is still showing as http/1.1 not h2
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261987,261994#msg-261994
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
None of the only http2 indicators are able to detect http2 although i have
it enable
Website Link : https://www.onestopmarketing.club
Full Nginx Config : http://pastebin.com/ScGmZNwX
I also did restart nginx or reload the configuration with no change at all
Posted at Nginx Forum:
http://forum
Turn out maxcdn havent implemented http2 yet
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261910,261911#msg-261911
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
HTTP2 isn't working for me .I still use HTTP/1.1 is reponse headers but
nginx don't show any error.I also restarted nginx with no change
server {
listen 443 http2 ;
ssl on;
ssl_certificate/etc/ssl/filterbypass.me.crt; #(or .pem)
ssl_certificate_key/etc/ssl/filt
For video streaming which option will be the best according to you
I currently use fastcgi_max_temp_file_size 0
fastcgi_connect_timeout 60;
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261232,261235#msg-261235
___
nginx mailing list
nginx
Is fastcgi_max_temp_file_size 0; and fastcgi_buffering off; the same ?
If no what is the difference between those two
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261232,261232#msg-261232
___
nginx mailing list
nginx@nginx.org
http://mail
I am trying to further optimize SSL but if i enable keepalive_timeout i get
high TTFB as shown in the report below
http://tools.pingdom.com/fpt/#!/KggzF
When i disable keepalive_timeout , TTFB is fixed but nginx recommand
keepalive_timeout :
http://nginx.org/en/docs/http/configuring_https_server
I have compiled nginx from source and i think that there is something wrong
with my init script.I changed the error log from debug to crit but error log
was still showing [debug] in logs.I had to killall nginx and then i ran
service nginx start to nginx again
#!/bin/sh
#
# nginx - this script star
I confirm that the issue is resolved and what indeed the time.It was not
properly sync
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,255769,255813#msg-255813
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/ng
the "date" command give the following on my server so i think the date is ok
(correct me if i am wrong)
Fri Dec 26 14:58:27 MST 2014
In php.ini
date.timezone = "US/Mountain"
[root@sv1 ~]# cat /etc/sysconfig/clock
ZONE="US/Mountain"
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,25576
@ionsec
These lines are already in my config but i add the "valid=300s" to the
resolver line
@Maxim how can i fix it
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,255769,255802#msg-255802
___
nginx mailing list
nginx@nginx.org
http://mail
I am seeing a lot of these errors in my /var/log/nginx/error.log
[error] 11405#0: OCSP_check_validity() failed (SSL: error:2707307D:OCSP
routines:OCSP_check_validity:status expired) while requesting certificate
status, responder: ocsp2.globalsign.com
How can i fix that
Posted at Nginx Forum:
Maxim i am already using latest Nginx version (1.7.8)
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,255549,255636#msg-255636
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
I fixed the oscp error and i keep monitoring to see if the video stop issue
happen again...Any idea how to fix the open socket issue
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,255549,255626#msg-255626
___
nginx mailing list
nginx@nginx.
I am seeing these errors in /var/log/nginx/error.log
2014/12/18 12:50:28 [error] 45444#0: OCSP_basic_verify() failed (SSL:
error:27069065:OCSP routines:OCSP_basic_verify:certificate verify
error:Verify error:unable to get issuer certificate) while requesting
certificate status, responder: ocsp2.gl
My site does video streaming and users are not able to play videos greater
than 10 mins.After 10-11 mins flowplayer stop playing the video but i don't
get any error either by php/nginx/flowplayer
Is there anything wrong with my fastcgi buffers
fastcgi_pass unix:/tmp/php5-fpm.sock;
I fixed it ... but for that i had to change my document root setup
when i was using /home/servergreek.com/public_html/www i got "no input file
specified"(although the directory existed and had index.php in it).Then i
did a server reinstall again but i choose
/var/www/servergreek.com/public_html/w
I added cgi.fix_pathinfo=0 to php.ini and now i get no input file specified
Thanks for helping me out Jader
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,255466,255472#msg-255472
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.
I am getting File not found error with nginx and i have been trying to fix
this for hours.The config look similar to what i use on other sites but i
don't know why it doesn't work.html files works fine thought.index.php
location is /home/servergreek.com/public_html/www/index.php.Thanks for
helping
Earlier i was using nginx installed from epel repo but i then decided to use
latest nginx
I use the exact modules that the epel one used except that i added spdy and
i complie from source(just so as not to break things).
/var/log/messages
Nov 18 10:53:41 sv1 abrtd: Package 'nginx' isn't signed w
I did a nginx restart but the errors still here
Nov 15 11:22:06 sv1 abrtd: Package 'nginx' isn't signed with proper key
Nov 15 11:22:06 sv1 abrtd: 'post-create' on
'/var/spool/abrt/ccpp-2014-11-15-11:21:50-44431' exited with 1
Nov 15 11:22:06 sv1 abrtd: Deleting problem directory
'/var/spool/abrt/
@Maxim Dounin
So a simple service nginx restart would do the job ?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,254626,254811#msg-254811
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
I am seeing a lot of these entries in my logs
Nov 6 04:29:13 sv1 kernel: nginx[62598]: segfault at 0 ip 00438f38
sp 0 0007fffa5a934c0 error 4 in nginx (deleted)[40+e2000]
Nov 6 04:29:13 sv1 abrt[22289]: File '/usr/sbin/nginx' seems to be deleted
Nov 6 04:29:13 sv1 abrt[222
I am currently using 1024 bit dhparams for maximum compatibility
Here is my ssllabs report :
https://www.ssllabs.com/ssltest/analyze.html?d=filterbypass.me
If i remove the DH from my cipher suites , will handshake simulation be
still a success for all browsers listed in the ssllabs report above
Thanks Maxim and GreenGecko for the insights
The worker process does match my number of cpu cores (running on 8 cores
atm)
How can i know the number of handshakes per seconds occurring on the
server
The openssl speed result have been posted on http://pastebin.com/hNeVhJfa
for readability
Yo
For my site , ssl seems to be slow even though i got A+ on sslabs
(implemented ocsp stapling, Forward Secrecy , spdy)
Here is the result from pingdom
http://tools.pingdom.com/fpt/#!/cc2MfH/https://www.filterbypass.me/
Notice the high connect time and high ssl negociation time
Here is my ng
Thanks for the info Valentin
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,251150,251276#msg-251276
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
What is the most suitable value according to you for the following
directives `spdy_headers_comp` and `spdy_chunk_size` . i want to optimize
spdy to get better performance.I am only using Nginx as my webserver (No
apache or any other software).
My Nginx vesion is : 1.7.2
Thanks
Posted at Nginx
41 matches
Mail list logo