Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions nginx/filesystem/etc/nginx/conf.d/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,6 @@ server {
# as directory, then redirect to index(angular) if no file found.
try_files $uri =404;
}

# Google search picked up things that don't exist, we need to get rid of them here
location /downloads.htm {
return 404;
}

error_page 404 /404.html;

Expand All @@ -119,29 +114,6 @@ server {
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

server {
Expand Down