Files
Fortran-docker-mvc/nginx.conf
Tommy Parnell a7037b9e92 init
2017-02-20 16:06:45 -05:00

15 lines
377 B
Nginx Configuration File

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
# Make site accessible from http://localhost/
server_name localhost;
location / {
root /home/fortran/fortran-machine;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.html;
include fastcgi_params;
}
}