Where is or where should be the folder following the port number in a url?

G M

I have the following error when running an Ubuntu server using apache2 and nginx
(index):8 GET http://157.27.222.38:5000/uv/lib/offline.js net::ERR_ABORTED 404 (Not Found)

I was wondering where /uv/ folder should be to be seen by the server. Is this a path relative to the root path in the server configuration?

davidgo

It is unclear from your question whether you are using Apache or Nginx. I assume it is similar for nginx, but I'll answer for Apache which I am more familiar with.

/uv/ is typically relative to the DocumentRoot specified in the relevant Apache VirtualHost or main config, however there are a number of exceptions to this.

  • If you have a config specifying an "Alias" this can graft in a directory from another place on the filesystem.
  • Similarly it is possible to use RewriteRules to force (for example) /uv/ to be parsed into index.php or similar (which is used by Wordpress and other software - but usually only in the case /uv/ does not exist.
  • It is possible that ProxyPass directives will do load-balance stuff under this from other servers.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Where is pip cache folder

From Dev

Find port number where HDFS is listening

From Dev

Mysql error not following where condition

From Dev

where SwingWorker should be in the class

From Dev

Where should I put a template folder for a bash script?

From Dev

Where should _uihooks be defined

From Dev

Composer: where should I put the "vendor" folder?

From Dev

Where should AsNoTracking be applied?

From Dev

Where should NSManagedObjectContext be created?

From Dev

Value always return 0 where it should return number of row inserted

From Dev

where should the "artifacts" folder belong to?

From Dev

Where to find a plugin folder?

From Dev

Where should we store service connection URL for JavaScript calls?

From Dev

How and where should I add the Glyphicons folder to my project?

From Dev

Where should I declare the server url for Rhodes Appl

From Dev

Where to execute the following code in Django?

From Dev

Get where is mySaveFileDialog folder

From Dev

Where should I use escape function in the following code?

From Dev

I get a type '{}' where I should be getting a type number (TypeScript)

From Dev

Where should i look for file from ajax call url [Magento]

From Dev

Where is the $HOME folder located?

From Dev

Where is the GVFS folder in 15.04

From Dev

How to get pid number and folder where it works

From Dev

Listing number of files in each folder where folder name matches a pattern

From Dev

Where is the cfnbootstrap folder?

From Dev

Where is the port number defined, which is used in JDBC hive connection string?

From Dev

Where should I put the extension folder

From Dev

Maven: The following artifacts could not be resolved. Where to place the friend's .m2 folder on my Mac?

From Dev

Where should we put the cast in following situation

Related Related

  1. 1

    Where is pip cache folder

  2. 2

    Find port number where HDFS is listening

  3. 3

    Mysql error not following where condition

  4. 4

    where SwingWorker should be in the class

  5. 5

    Where should I put a template folder for a bash script?

  6. 6

    Where should _uihooks be defined

  7. 7

    Composer: where should I put the "vendor" folder?

  8. 8

    Where should AsNoTracking be applied?

  9. 9

    Where should NSManagedObjectContext be created?

  10. 10

    Value always return 0 where it should return number of row inserted

  11. 11

    where should the "artifacts" folder belong to?

  12. 12

    Where to find a plugin folder?

  13. 13

    Where should we store service connection URL for JavaScript calls?

  14. 14

    How and where should I add the Glyphicons folder to my project?

  15. 15

    Where should I declare the server url for Rhodes Appl

  16. 16

    Where to execute the following code in Django?

  17. 17

    Get where is mySaveFileDialog folder

  18. 18

    Where should I use escape function in the following code?

  19. 19

    I get a type '{}' where I should be getting a type number (TypeScript)

  20. 20

    Where should i look for file from ajax call url [Magento]

  21. 21

    Where is the $HOME folder located?

  22. 22

    Where is the GVFS folder in 15.04

  23. 23

    How to get pid number and folder where it works

  24. 24

    Listing number of files in each folder where folder name matches a pattern

  25. 25

    Where is the cfnbootstrap folder?

  26. 26

    Where is the port number defined, which is used in JDBC hive connection string?

  27. 27

    Where should I put the extension folder

  28. 28

    Maven: The following artifacts could not be resolved. Where to place the friend's .m2 folder on my Mac?

  29. 29

    Where should we put the cast in following situation

HotTag

Archive