Changes of Revision 28
[-] | Changed | nginx.spec |
x 1
2 Source102: nginx-logo.png 3 Source103: 50x.html 4 Source104: 404.html 5 +Source105: ssl-ciphersample 6 7 # removes -Werror in upstream build scripts. -Werror conflicts with 8 # -D_FORTIFY_SOURCE=2 causing warnings to turn into errors. 9
10 %{__tar} zxvf %{SOURCE13} 11 %{__tar} zxvf %{SOURCE14} 12 13 -%patch5 -p1 14 +%patch5 -p0 15 16 17 %build 18
19 %{__install} -p -d -m 0755 %{buildroot}%{nginx_logdir} 20 %{__install} -p -d -m 0755 %{buildroot}%{nginx_webroot} 21 %{__install} -p -m 0644 %{SOURCE100} %{SOURCE101} %{SOURCE102} %{SOURCE103} %{SOURCE104} %{buildroot}%{nginx_webroot} 22 +%{__install} -p -m 0644 %{SOURCE105} %{buildroot}%{nginx_confdir}/ 23 24 # convert to UTF-8 all files that give warnings. 25 for textfile in CHANGES 26 |
||
[+] | Added | ssl-ciphersample ^ |
@@ -0,0 +1,3 @@ +ssl_protocols TLSv1 TLSv1.1 TLSv1.2; +ssl_ciphers EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:EECDH+RC4:RSA+RC4:!MD5; +ssl_prefer_server_ciphers on; |