diff --git a/tms/nginx.conf b/tms/nginx.conf
deleted file mode 100644
index 2f9bd817775a2e816aa511f8eafbfed432179b80..0000000000000000000000000000000000000000
--- a/tms/nginx.conf
+++ /dev/null
@@ -1,31 +0,0 @@
-worker_processes 4;
-pid /run/nginx.pid;
-
-events {
-  worker_connections  2048;
-  multi_accept on;
-  use epoll;
-}
-
-http {
-  server_tokens off;
-  sendfile on;
-  access_log /dev/stdout;
-  error_log /dev/stdout;
-  tcp_nopush on;
-  tcp_nodelay on;
-  keepalive_timeout 15;
-  types_hash_max_size 2048;
-  include /etc/nginx/mime.types;
-  default_type application/octet-stream;
-  gzip on;
-  gzip_disable "msie6";
-  include /etc/nginx/conf.d/*.conf;
-  include /etc/nginx/sites-enabled/*;
-  open_file_cache max=100;
-  client_body_temp_path /tmp 1 2;
-  client_body_buffer_size 256k;
-  client_body_in_file_only off;
-}
-
-daemon off;
\ No newline at end of file