fs_tigre
fs_tigre

Reputation: 10738

In what folder does Ngnix gets installed in Ubuntu Server

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

Answers (1)

hek2mgl
hek2mgl

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

Related Questions