Reputation: 10738
I'm trying to understand the Nginx folder structure.
In what folder (or folders) does Ngnix gets installed in Ubuntu Server?
Thanks
Upvotes: 0
Views: 30
Reputation: 158080
On Debian and it's derivatives like Ubuntu, you can use the command:
dpkg -L PACKAGE_NAME
to get a list of files installed by that package. For nginx
it is:
dpkg -L nginx
Upvotes: 2