diff --git a/7.Nginx/0_setup.py b/7.Nginx/0_setup.py
index 6247a11d54b82527c70c25c18b2bcbe872bb3b67..837e736fb62d6f2880415b413fdc48f94d80abb2 100644
--- a/7.Nginx/0_setup.py
+++ b/7.Nginx/0_setup.py
@@ -25,16 +25,9 @@ def setup(interactive=True):
     dir_path = utils.get_dir(__file__)
     cmds = [
         'apt-get install --yes nginx uwsgi uwsgi-plugin-python3',
-        '[ -f "/etc/nginx/conf.d/ssl.conf" ] || cp "%s/ssl.conf" "/etc/nginx/conf.d/ssl.conf"' % dir_path,
-        '[ -f "/etc/nginx/nginx.conf.back" ] || cp "/etc/nginx/nginx.conf" "/etc/nginx/nginx.conf.back"',
-        'cp "%s/nginx.conf" "/etc/nginx/nginx.conf"' % dir_path,
-        'cp "%s/mime.types" "/etc/nginx/mime.types"' % dir_path,
-        'cp "%s/uwsgi_params" "/etc/nginx/uwsgi_params"' % dir_path,
         'rm -f /etc/nginx/sites-enabled/default',
     ]
     hosts = list()
-    # Stats vhost (nginx_status for monitoring)
-    cmds.extend(vhost_write_cmds(dir_path, 'stats', 'localhost'))
     # FTP: videos vhost
     if os.path.exists('/var/www/videos'):
         cmds.append('cp %s/crossdomain.xml /var/www/videos/crossdomain.xml' % dir_path)
diff --git a/7.Nginx/mime.types b/7.Nginx/mime.types
deleted file mode 100644
index c10e3285f61bb9d63fab001b7d83a330fcdb48cc..0000000000000000000000000000000000000000
--- a/7.Nginx/mime.types
+++ /dev/null
@@ -1,81 +0,0 @@
-types {
-    text/html                             html htm shtml;
-    text/css                              css;
-    text/xml                              xml rss;
-
-    text/mathml                           mml;
-    text/plain                            txt log md rst;
-    text/vnd.sun.j2me.app-descriptor      jad;
-    text/vnd.wap.wml                      wml;
-    text/x-component                      htc;
-
-    image/gif                             gif;
-    image/jpeg                            jpeg jpg;
-    image/png                             png;
-    image/svg+xml                         svg;
-    image/tiff                            tif tiff;
-    image/vnd.wap.wbmp                    wbmp;
-    image/x-icon                          ico;
-    image/x-jng                           jng;
-    image/x-ms-bmp                        bmp;
-
-    application/atom+xml                  atom;
-    application/java-archive              jar war ear;
-    application/javascript                jsonp;
-    application/json                      json;
-    application/mac-binhex40              hqx;
-    application/msword                    doc;
-    application/pdf                       pdf;
-    application/postscript                ps eps ai;
-    application/rtf                       rtf;
-    application/vnd.ms-excel              xls;
-    application/vnd.ms-powerpoint         ppt;
-    application/vnd.wap.wmlc              wmlc;
-    application/vnd.wap.xhtml+xml         xhtml;
-    application/x-7z-compressed           7z;
-    application/x-cocoa                   cco;
-    application/x-gzip                    gz tgz;
-    application/x-java-archive-diff       jardiff;
-    application/x-java-jnlp-file          jnlp;
-    application/x-javascript              js;
-    application/x-makeself                run;
-    application/x-mpegURL                 m3u8;
-    application/x-perl                    pl pm;
-    application/x-pilot                   prc pdb;
-    application/x-rar-compressed          rar;
-    application/x-redhat-package-manager  rpm;
-    application/x-sea                     sea;
-    application/x-shockwave-flash         swf;
-    application/x-stuffit                 sit;
-    application/x-tar                     tar;
-    application/x-tcl                     tcl tk;
-    application/x-x509-ca-cert            der pem crt;
-    application/x-xpinstall               xpi;
-    application/x-xz                      xz;
-    application/zip                       zip;
-
-    application/octet-stream              bin exe dll;
-    application/octet-stream              deb;
-    application/octet-stream              dmg;
-    application/octet-stream              eot;
-    application/octet-stream              iso img;
-    application/octet-stream              msi msp msm;
-
-    audio/midi                            mid midi kar;
-    audio/mp4                             m4a;
-    audio/mpeg                            mp3;
-    audio/ogg                             oga;
-    audio/x-realaudio                     ra;
-
-    video/3gpp                            3gpp 3gp;
-    video/mp4                             mp4 m4v;
-    video/mpeg                            mpeg mpg;
-    video/ogg                             ogv ogg;
-    video/quicktime                       mov;
-    video/webm                            webm;
-    video/x-flv                           flv;
-    video/x-mng                           mng;
-    video/x-ms-asf                        asx asf;
-    video/x-ms-wmv                        wmv;
-    video/x-msvideo                       avi;
-}
\ No newline at end of file
diff --git a/7.Nginx/nginx.conf b/7.Nginx/nginx.conf
deleted file mode 100644
index e6170abf3549b3a0ce0da4604f348551f1e0efb4..0000000000000000000000000000000000000000
--- a/7.Nginx/nginx.conf
+++ /dev/null
@@ -1,74 +0,0 @@
-#
-# General settings
-# This file was customized by the UbiCast company.
-#
-
-user  nginx;
-worker_processes 12;
-
-error_log  /var/log/nginx/error.log warn;
-pid        /var/run/nginx.pid;
-
-events {
-	worker_connections 1024;
-	multi_accept on;
-}
-
-http {
-	##
-	# Basic Settings
-	##
-
-	# requêtes maximun par ip
-	limit_req_zone $binary_remote_addr zone=flood:10m rate=100r/s;
-	limit_req zone=flood burst=100 nodelay;
-
-	# connexions maximum par ip
-	limit_conn_zone $binary_remote_addr zone=ddos:10m;
-	limit_conn ddos 100;
-
-	sendfile on;
-	tcp_nopush on;
-	tcp_nodelay on;
-	keepalive_timeout 31;
-	types_hash_max_size 2048;
-	server_tokens off;
-	autoindex off;
-
-	# server_name_in_redirect off;
-
-	# Support very long vhost names
-	server_names_hash_max_size 1024;
-	server_names_hash_bucket_size 96;
-
-	include /etc/nginx/mime.types;
-	default_type application/octet-stream;
-
-	##
-	# Logging Settings
-	##
-
-	access_log /var/log/nginx/access.log;
-	error_log /var/log/nginx/error.log;
-
-	##
-	# Gzip Settings
-	##
-
-	gzip on;
-	gzip_disable "msie6";
-
-	gzip_vary on;
-	gzip_proxied any;
-	gzip_comp_level 6;
-	gzip_buffers 16 8k;
-	gzip_http_version 1.1;
-	gzip_types text/plain text/css application/json application/x-javascript application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
-
-	##
-	# Virtual Host Configs
-	##
-
-	include /etc/nginx/conf.d/*.conf;
-	include /etc/nginx/sites-enabled/*;
-}
diff --git a/7.Nginx/ssl.conf b/7.Nginx/ssl.conf
deleted file mode 100644
index d2a7d4e1285b77b8fdc2053cbad546aa0531dfbf..0000000000000000000000000000000000000000
--- a/7.Nginx/ssl.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
-ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
-# refs #16437
-ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
-ssl_ecdh_curve secp384r1;
-ssl_session_cache shared:SSL:10m;
-ssl_stapling on;
-ssl_stapling_verify on;
-add_header X-Content-Type-Options nosniff;
diff --git a/7.Nginx/uwsgi_params b/7.Nginx/uwsgi_params
deleted file mode 100644
index 5a6d3f1585153f21857044bd053c53c0ebcd108b..0000000000000000000000000000000000000000
--- a/7.Nginx/uwsgi_params
+++ /dev/null
@@ -1,24 +0,0 @@
-# Default settings
-uwsgi_param	QUERY_STRING		$query_string;
-uwsgi_param	REQUEST_METHOD		$request_method;
-uwsgi_param	CONTENT_TYPE		$content_type;
-uwsgi_param	CONTENT_LENGTH		$content_length;
-
-uwsgi_param	REQUEST_URI		$request_uri;
-uwsgi_param	PATH_INFO		$document_uri;
-uwsgi_param	DOCUMENT_ROOT		$document_root;
-uwsgi_param	SERVER_PROTOCOL		$server_protocol;
-uwsgi_param	UWSGI_SCHEME		$scheme;
-
-uwsgi_param	REMOTE_ADDR		$remote_addr;
-uwsgi_param	REMOTE_PORT		$remote_port;
-uwsgi_param	SERVER_PORT		$server_port;
-uwsgi_param	SERVER_NAME		$server_name;
-
-# Modified settings
-uwsgi_param X_FORWARDED_PROTO		$scheme;
-uwsgi_param HTTPS		$https if_not_empty;
-uwsgi_read_timeout		300;
-uwsgi_send_timeout		300;
-client_max_body_size		5G;
-uwsgi_max_temp_file_size	5000m;
diff --git a/7.Nginx/vhost_stats.conf b/7.Nginx/vhost_stats.conf
deleted file mode 100644
index f5d39331e4f0cfdb3f1b617d4c05654de6378ab1..0000000000000000000000000000000000000000
--- a/7.Nginx/vhost_stats.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-server {
-	listen 127.0.0.1:80;
-	server_name localhost;
-
-	location /nginx_status {
-		stub_status on;
-		access_log off;
-		allow 127.0.0.1;
-		deny all;
-	}
-}