Eu tenho um arquivo index.html de pasta e dentro dessa pasta, eu tenho outro com o próprio index.html
Estouusandoessaconfiguração
events{worker_connections2048;}http{server{listen6666;server_name0.0.0.0;root/static;indexindex.html;charsetutf-8;location/{include/etc/nginx/mime.types;types{font/truetypettf;}types{application/font-woff2woff2;}}location/test{alias/static/test;}}}
ONginxéexecutadoemcontêinerdoDocker
Existeomeudocker-compose
version:'2'services:serve_site:container_name:serverbuild:context:.dockerfile:./docker/Dockerfile-nginxvolumes:-./www-public:/staticports:-"80:6666"
E Dockerfile
FROM nginx:alpine
MAINTAINER Viktor Dzundza <[email protected]>
ENV REFRESHED_AT 20170112:000001
ENV HOME=/static
RUN mkdir $HOME
COPY ./www-public $HOME/
WORKDIR $HOME
COPY nginx.conf /etc/nginx/nginx.conf
RUN set -x ; \
addgroup -g 82 -S www-data ; \
adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1
RUN chown -R www-data:www-data /static/*
RUN chmod -R 0755 /static/*
CMD ["nginx", "-g", "daemon off;"]
Mas eu acho que esse problema com a configuração do nginx.
Quando estou tentando ir localhost / test, o navegador é redirecionado para o localhost: 6666 / test
Como posso configurar o nginx para resolver esse problema?