Skip to content
Snippets Groups Projects
Commit 8335bb38 authored by Francesco Lombardo's avatar Francesco Lombardo :cloud:
Browse files

first commit

parent 3f5d6456
No related branches found
No related tags found
No related merge requests found
FROM nginx:alpine
COPY nginx/default.conf.template /etc/nginx/templates/
ENV SIGN_OUT_URL="#"
#COPY nginx/default.conf /etc/nginx/conf.d
COPY index.html /var/www/html/index.html
#
\ No newline at end of file
<a href="<!--#echo var="ssisignouturl"-->">Sign out</a>
\ No newline at end of file
server {
listen 0.0.0.0:80;
root /var/www/html;
location / {
ssi on;
index index.php index.html;
set $ssisignouturl "${SIGN_OUT_URL}";
}
}
server {
listen 0.0.0.0:80;
root /var/www/html;
location / {
ssi on;
index index.php index.html;
set $ssisignouturl "${SIGN_OUT_URL}";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment