0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Nginx - How to Setup Web Site with Single Page Application(SPA)?

Posted at

When you serve a web site in SPA, you will get 404 after F5 refresh page.

For example: We want to access a url http://127.0.0.1:8080/taiwan

1. Modified Web Vue Project Code

router.js
new VueRouter({
  mode: 'history',
  base: '/taiwan',
  ...
)}
webpack.config.js
...
output: {
  ...
  publicPath: '/taiwan'
},
...

2. Modified Nginx Configuration

location /taiwan {
  alias   /usr/share/nginx/html/taiwan/;
  try_files $uri $uri/ /taiwan/index.html;
  index  index.html;
}

3. Nginx Reload

# nginx -s reload

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?