diff --git a/.htaccess b/.htaccess
deleted file mode 100644
index daf81ff72d33c4a673dd445de18dba18061346f3..0000000000000000000000000000000000000000
--- a/.htaccess
+++ /dev/null
@@ -1,7 +0,0 @@
-RewriteEngine On
-RewriteBase /My-Project/
-
-RewriteCond %{THE_REQUEST} /public/([^\s?]*) [NC]
-RewriteRule ^ %1 [L,NE,R=302]
-
-RewriteRule ^((?!public/).*)$ public/$1 [L,NC]
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index 9c08500337a9555e9b14529a04abc2b81d01c236..af42a8772bc6cdde214ad147dd7a0fad9595a745 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,9 +5,10 @@ RUN rm -rf /usr/share/nginx/html/*
 
 RUN apt-get update \
     && apt upgrade -y \
-    && apt-get install nodejs npm -y \
-    && npm install
+    && apt-get install nodejs npm -y
 
 WORKDIR /usr/share/nginx/html
 
-COPY . .
\ No newline at end of file
+COPY . .
+
+RUN cp .nginx.conf /etc/nginx/nginx.conf
\ No newline at end of file
diff --git a/Makefile b/Makefile
index 45327c22ec28b4405d2dfe968343d4c4d9b4243f..ac2f4355d22c0a87c3c1e400975070cb28252ef9 100644
--- a/Makefile
+++ b/Makefile
@@ -24,4 +24,4 @@ stylesheet:
 	docker exec -it kuadrado bash -c "npm run style"
 
 open:
-	firefox http://localhost/public/
+	firefox http://localhost/
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000000000000000000000000000000000000..886be57637c7b1ac506b55677b67742c230fd187
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,39 @@
+user  nginx;
+worker_processes  1;
+
+error_log  /var/log/nginx/error.log warn;
+pid        /var/run/nginx.pid;
+
+
+events {
+    worker_connections  1024;
+}
+
+http {
+    include       /etc/nginx/mime.types;
+    default_type  application/octet-stream;
+
+    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
+                      '$status $body_bytes_sent "$http_referer" '
+                      '"$http_user_agent" "$http_x_forwarded_for"';
+
+    access_log  /var/log/nginx/access.log  main;
+
+    sendfile        on;
+    #tcp_nopush     on;
+
+    keepalive_timeout  65;
+
+    #gzip  on;
+	
+    include /etc/nginx/conf.d/*.conf;
+
+	server {
+        listen 80;
+        root /public;
+		location / {
+			root /public;
+		}
+	}
+}
+