Plesk Onyx 17 mod deflate aktivieren

Henk1060

New Member
Hallo Forum,

Bin ein neuer in der Runde ;)
Und versuche gerade meinen Server einzustellen.
Nutze Plesk Onyx 17

Jetzt würde ich gerne mod deflate aktivieren für die komp. der webseiten ausgabe.
ich bin nach dieser Vorlage vorgegangen


vim /etc/httpd/conf.d/deflate.conf

Code:
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
DeflateCompressionLevel 8
</ifmodule>

/etc/init.d/httpd restart
bei restart kommt folgendes
/etc/init.d/httpd: not found

das file gibt es, habe ich nachgeschaut.
Oder gehe ich da komplett falsch vor.
Vielen lieben dank...
 
vielen dank für eure antworten,
irgendwo klappt es noch nicht ganz

hier meine plesk einstellungen

PHP-Einstellungen

PHP 7.0.14
phph ausführen als FPM-anwendung von Ngibx bedient

Einstellungen für Apache & nginx
aktiviert
Proxymodus
Intelligente Bearbeitung statischer Dateien
Statische Dateien direkt durch nginx bedienen

Zusätzliche nginx-Anweisungen
Code:
if (!-e $request_filename){
	rewrite ^(.*)$ /index.php break;
}
location ~* .(js|css|png|jpg|jpeg|gif|ico|woff|svg)$ {
	expires 30d;
	add_header Pragma public;
	add_header Cache-Control "public";
	try_files $uri @fallback;
}
gzip on;
gzip_proxied any;
gzip_types text/plain text/xml text/css application/x-javascript;
gzip_vary on;
gzip_disable "MSIE [1-6].(?!.*SV1)";
rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last;
rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;

meine .htaccess
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress




<IfModule mod_gzip.c> 
mod_gzip_on Yes 
mod_gzip_dechunk Yes 
mod_gzip_item_include file \.(html?|txt|css|js|php|pl|jpg|jpeg|png|gif)$ [NC]
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text\.* 
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image\.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule> 



<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 15 days"
ExpiresByType image/gif "access 15 days"
ExpiresByType image/gif "access 15 days"
ExpiresByType image/ico "access 15 days"
ExpiresByType image/png "access 15 days"
ExpiresByType video/x-flv "access 15 days"
ExpiresByType application/pdf "access 15 days"
ExpiresByType application/x-shockwave-flash "access 15 days"
ExpiresByType application/javascript "access 15 days"
ExpiresByType text/javascript "access 15 days"
ExpiresByType text/css "access 15 days"
<IfModule mod_headers.c>
Header set Cache-Control "public"
</IfModule>
</IfModule>


<IfModule mod_deflate.c>
 AddOutputFilterByType DEFLATE text/plain
 AddOutputFilterByType DEFLATE text/html
 AddOutputFilterByType DEFLATE text/xml 
 AddOutputFilterByType DEFLATE text/css
 AddOutputFilterByType DEFLATE text/javascript
 AddOutputFilterByType DEFLATE application/xml
 AddOutputFilterByType DEFLATE application/xhtml+xml
 AddOutputFilterByType DEFLATE application/rss+xml
 AddOutputFilterByType DEFLATE application/atom_xml
 AddOutputFilterByType DEFLATE application/javascript
 AddOutputFilterByType DEFLATE application/x-javascript
 AddOutputFilterByType DEFLATE application/x-shockwave-flash
</IfModule>

<IfModule mod_deflate.c>
 <FilesMatch "\.(js|jpg|jpeg|gif|png|css)$">
  ExpiresActive on
  ExpiresDefault "access plus 1 month"
  SetOutputFilter DEFLATE
 </FilesMatch>
</IfModule>

Grösse am alten webhosting paket
702 kb
auf dem neuen Server
1.3 mb
 
ok ich habe es gefunden ;))

bei zusätzliche nginx anweisungen
Code:
gzip on;
gzip_proxied any;
gzip_min_length  1100;
gzip_buffers  4 32k;
gzip_types text/plain application/javascript application/x-javascript text/xml text/css;
gzip_vary on;

was meint ihr soll ich die werte
gzip_min_length 1100;
gzip_buffers 4 32k;

so lassen oder ändern
 
Back
Top