Diff
checker
Texte
Texte
Images
Documents
Excel
Dossiers
Legal
Enterprise
Application de bureau
Prix
Se connecter
Télécharger Diffchecker Desktop
Comparer le texte
Trouver la différence entre deux fichiers texte
Outils
Historique
Éditeur live
Cacher identiques
Sans retour à la ligne
Vue
Divisé
Unifié
Niveau de précision
Intelligent
Mot
Caractère
Coloration syntaxique
Choisir la syntaxe
Ignorer
Transformer le texte
Aller au premier écart
Modifier l'entrée
Diffchecker Desktop
La façon la plus sécurisée d'utiliser Diffchecker. Obtenez l'application Diffchecker Desktop : vos diffs ne quittent jamais votre ordinateur !
Obtenir Desktop
NginXConfigDiff
Créé
il y a 7 ans
Le diff n'expire jamais
Effacer
Exporter
Partager
Expliquer
14 suppressions
Lignes
Total
Supprimé
Caractères
Total
Supprimé
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
26 lignes
Copier tout
19 ajouts
Lignes
Total
Ajouté
Caractères
Total
Ajouté
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
29 lignes
Copier tout
server {
server {
Copier
Copié
Copier
Copié
server_name
_;
listen 80;
return 301 https://$host$request_uri
;
listen [::]:80;
server_name
contfix.co.il www.contfix.co.il
;
Copier
Copié
Copier
Copié
root /var/www/html;
ssl_certificate /etc/nginx/conf.d/ssl/contfix.co.il.crt;
index index.php index.html index.htm;
ssl_certificate_key /etc/nginx/conf.d/ssl/contfix.co.il.key;
ssl_dhparam /etc/nginx/conf.d/ssl/dhparam.pem;
root /var/www/html/contfix.co.il;
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
location ~ \.php$ {
include snippets/fastcgi-php.conf;
include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
fastcgi_pass 127.0.0.1:9000;
}
}
Copier
Copié
Copier
Copié
location
/
{
location
~* \.(jpg|jpeg|png|gif|ico|css|js|ttf|woff)$
{
try_files $uri $uri/ =404
;
expires 365d
;
}
}
Copier
Copié
Copier
Copié
location ~
/\.ht
{
location ~
* \.(pdf)$
{
deny all
;
expires 30d
;
}
}
Copier
Copié
Copier
Copié
# notes {
# 443 ssl http2;
# [::]:443 ssl http2;
# }
}
}
Copier
Copié
Copier
Copié
Différences enregistrées
Texte d'origine
Ouvrir un fichier
server { server_name _; return 301 https://$host$request_uri; root /var/www/html; index index.php index.html index.htm; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass 127.0.0.1:9000; } location / { try_files $uri $uri/ =404; } location ~ /\.ht { deny all; } # notes { # 443 ssl http2; # [::]:443 ssl http2; # } }
Texte modifié
Ouvrir un fichier
server { listen 80; listen [::]:80; server_name contfix.co.il www.contfix.co.il; ssl_certificate /etc/nginx/conf.d/ssl/contfix.co.il.crt; ssl_certificate_key /etc/nginx/conf.d/ssl/contfix.co.il.key; ssl_dhparam /etc/nginx/conf.d/ssl/dhparam.pem; root /var/www/html/contfix.co.il; location / { index index.php index.html index.htm; try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass 127.0.0.1:9000; } location ~* \.(jpg|jpeg|png|gif|ico|css|js|ttf|woff)$ { expires 365d; } location ~* \.(pdf)$ { expires 30d; } }
Trouver la différence