Nginx: Difference between revisions
Jump to navigation
Jump to search
Bit of security
imported>Sjwhitak m (server_name) |
imported>Sjwhitak (Bit of security) |
||
}
Please note that you'll need [https://shell.lug.mtu.edu/wiki/index.php?title=Nginx&action=submit#fastcgi php add-ons] and more configurations to have [https://www.phpbb.com/ phpbb] and [https://www.mediawiki.org/wiki/MediaWiki mediawiki] to run, but this is just a basic example.
If you want to protect your server from people access your IP (typically if they're crawling via IPs, they're probably not up to something good), you can up a configuration:
server {
listen 80;
listen [::]:80;
server_name _;
return 444;
}
that rejects them.
= Add-ons =
|